UNPKG

@apideck/node

Version:
80 lines (79 loc) 1.99 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 { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; import { Supplier } from './Supplier'; /** * * @export * @interface GetSuppliersResponse */ export interface GetSuppliersResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetSuppliersResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetSuppliersResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetSuppliersResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetSuppliersResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetSuppliersResponse */ operation: string; /** * * @type {Array<Supplier>} * @memberof GetSuppliersResponse */ data: Array<Supplier>; /** * * @type {Meta} * @memberof GetSuppliersResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetSuppliersResponse */ links?: Links; /** * * @type {Raw} * @memberof GetSuppliersResponse */ _raw?: Raw | null; } export declare function GetSuppliersResponseFromJSON(json: any): GetSuppliersResponse; export declare function GetSuppliersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSuppliersResponse; export declare function GetSuppliersResponseToJSON(value?: GetSuppliersResponse | null): any;