/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 ExternalAuthSigninRequest */ export interface ExternalAuthSigninRequest { /** * Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication. * @type {string} * @memberof ExternalAuthSigninRequest */ jwt?: string; /** * * @type {string} * @memberof ExternalAuthSigninRequest */ sessionPublicKey?: string; } export declare function ExternalAuthSigninRequestFromJSON(json: any): ExternalAuthSigninRequest; export declare function ExternalAuthSigninRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExternalAuthSigninRequest; export declare function ExternalAuthSigninRequestToJSON(value?: ExternalAuthSigninRequest | null): any;