@apideck/node
Version:
Apideck Node.js SDK
57 lines (56 loc) • 1.55 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.
*/
import { ConsumerMetadata } from './ConsumerMetadata';
import { SessionSettings } from './SessionSettings';
import { SessionTheme } from './SessionTheme';
/**
*
* @export
* @interface Session
*/
export interface Session {
/**
*
* @type {ConsumerMetadata}
* @memberof Session
*/
consumer_metadata?: ConsumerMetadata;
/**
* The URL to redirect the user to after the session has been configured.
* @type {string}
* @memberof Session
*/
redirect_uri?: string;
/**
*
* @type {SessionSettings}
* @memberof Session
*/
settings?: SessionSettings;
/**
*
* @type {SessionTheme}
* @memberof Session
*/
theme?: SessionTheme;
/**
* Custom consumer settings that are passed as part of the session.
* @type {{ [key: string]: unknown; }}
* @memberof Session
*/
custom_consumer_settings?: {
[key: string]: unknown;
};
}
export declare function SessionFromJSON(json: any): Session;
export declare function SessionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Session;
export declare function SessionToJSON(value?: Session | null): any;