UNPKG

@apideck/node

Version:
28 lines (27 loc) 901 B
/** * 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 CreateCallbackState */ export interface CreateCallbackState { /** * The redirect URI to be used after the connection is created. * @type {string} * @memberof CreateCallbackState */ redirect_uri?: string; } export declare function CreateCallbackStateFromJSON(json: any): CreateCallbackState; export declare function CreateCallbackStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCallbackState; export declare function CreateCallbackStateToJSON(value?: CreateCallbackState | null): any;