UNPKG

@apideck/node

Version:
48 lines (47 loc) 1.38 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 { CustomFieldFinder } from './CustomFieldFinder'; import { Raw } from './Raw'; /** * * @export * @interface GetCustomFieldsResponse */ export interface GetCustomFieldsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetCustomFieldsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetCustomFieldsResponse */ status: string; /** * * @type {Array<CustomFieldFinder>} * @memberof GetCustomFieldsResponse */ data: Array<CustomFieldFinder>; /** * * @type {Raw} * @memberof GetCustomFieldsResponse */ _raw?: Raw | null; } export declare function GetCustomFieldsResponseFromJSON(json: any): GetCustomFieldsResponse; export declare function GetCustomFieldsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCustomFieldsResponse; export declare function GetCustomFieldsResponseToJSON(value?: GetCustomFieldsResponse | null): any;