UNPKG

@apideck/node

Version:
48 lines (47 loc) 1.47 kB
/** * 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 { CreateCallbackStateResponseData } from './CreateCallbackStateResponseData'; import { Raw } from './Raw'; /** * * @export * @interface CreateCallbackStateResponse */ export interface CreateCallbackStateResponse { /** * HTTP Response Status Code * @type {number} * @memberof CreateCallbackStateResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof CreateCallbackStateResponse */ status: string; /** * * @type {CreateCallbackStateResponseData} * @memberof CreateCallbackStateResponse */ data: CreateCallbackStateResponseData; /** * * @type {Raw} * @memberof CreateCallbackStateResponse */ _raw?: Raw | null; } export declare function CreateCallbackStateResponseFromJSON(json: any): CreateCallbackStateResponse; export declare function CreateCallbackStateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCallbackStateResponse; export declare function CreateCallbackStateResponseToJSON(value?: CreateCallbackStateResponse | null): any;