Authentication

public struct Authentication : Codable

Undocumented

  • OAuth Token

    Declaration

    Swift

    public let oAuthToken: String?
  • The type of the token

    Declaration

    Swift

    public let tokenType: String?
  • Refresh token

    Declaration

    Swift

    public let refreshToken: String?
  • Scope of the token

    Declaration

    Swift

    public let scope: String?
  • Created at

    Declaration

    Swift

    public let createdAt: Int?
  • Undocumented

    Declaration

    Swift

    public var createdAtDate: Date? { get }
  • Declaration

    Swift

    public init(from decoder: Decoder) throws