@apideck/node
Version:
Apideck Node.js SDK
46 lines (45 loc) • 1.6 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface ConnectionImportDataCredentials
*/
export interface ConnectionImportDataCredentials {
/**
* The refresh token can be used to obtain a new access token.
* @type {string}
* @memberof ConnectionImportDataCredentials
*/
refresh_token?: string | null;
/**
* Access token
* @type {string}
* @memberof ConnectionImportDataCredentials
*/
access_token?: string;
/**
* The datetime at which the token was issued. If omitted the token will be queued for refresh.
* @type {Date}
* @memberof ConnectionImportDataCredentials
*/
issued_at?: Date | null;
/**
* The number of seconds until the token expires. If omitted the token will be queued for refresh.
* @type {number}
* @memberof ConnectionImportDataCredentials
*/
expires_in?: number | null;
}
export declare function ConnectionImportDataCredentialsFromJSON(json: any): ConnectionImportDataCredentials;
export declare function ConnectionImportDataCredentialsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectionImportDataCredentials;
export declare function ConnectionImportDataCredentialsToJSON(value?: ConnectionImportDataCredentials | null): any;