buildkite-swift/Sources/Buildkite/Models/AccessToken.swift

15 lines
262 B
Swift

//
// AccessToken.swift
// Buildkite
//
// Created by Aaron Sky on 5/3/20.
// Copyright © 2020 Fangamer. All rights reserved.
//
import Foundation
public struct AccessToken: Codable, Equatable {
public var uuid: UUID
public var scopes: [String]
}