UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.69 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 { Merchant } from './Merchant'; import { Raw } from './Raw'; /** * * @export * @interface GetMerchantResponse */ export interface GetMerchantResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetMerchantResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetMerchantResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetMerchantResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetMerchantResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetMerchantResponse */ operation: string; /** * * @type {Merchant} * @memberof GetMerchantResponse */ data: Merchant; /** * * @type {Raw} * @memberof GetMerchantResponse */ _raw?: Raw | null; } export declare function GetMerchantResponseFromJSON(json: any): GetMerchantResponse; export declare function GetMerchantResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMerchantResponse; export declare function GetMerchantResponseToJSON(value?: GetMerchantResponse | null): any;