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 { Merchant } from './Merchant'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetMerchantsResponse */ export interface GetMerchantsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetMerchantsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetMerchantsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetMerchantsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetMerchantsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetMerchantsResponse */ operation: string; /** * * @type {Array<Merchant>} * @memberof GetMerchantsResponse */ data: Array<Merchant>; /** * * @type {Meta} * @memberof GetMerchantsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetMerchantsResponse */ links?: Links; /** * * @type {Raw} * @memberof GetMerchantsResponse */ _raw?: Raw | null; } export declare function GetMerchantsResponseFromJSON(json: any): GetMerchantsResponse; export declare function GetMerchantsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMerchantsResponse; export declare function GetMerchantsResponseToJSON(value?: GetMerchantsResponse | null): any;