UNPKG

@apideck/node

Version:
62 lines (61 loc) 1.65 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 { GetConsumersResponseData } from './GetConsumersResponseData'; import { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetConsumersResponse */ export interface GetConsumersResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetConsumersResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetConsumersResponse */ status: string; /** * * @type {Array<GetConsumersResponseData>} * @memberof GetConsumersResponse */ data: Array<GetConsumersResponseData>; /** * * @type {Meta} * @memberof GetConsumersResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetConsumersResponse */ links?: Links; /** * * @type {Raw} * @memberof GetConsumersResponse */ _raw?: Raw | null; } export declare function GetConsumersResponseFromJSON(json: any): GetConsumersResponse; export declare function GetConsumersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetConsumersResponse; export declare function GetConsumersResponseToJSON(value?: GetConsumersResponse | null): any;