18 lines
412 B
Swift
18 lines
412 B
Swift
//
|
|
// TokenResponse.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 14.04.2025.
|
|
// Copyright © 2025 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
public struct TokenResponse: Codable, Sendable {
|
|
|
|
public var id_token: String
|
|
public var refresh_token: String?
|
|
public var access_token: String
|
|
public var expires_in: Int
|
|
public var token_type: String
|
|
public var scope: String
|
|
}
|