@apideck/node
Version:
Apideck Node.js SDK
80 lines (79 loc) • 2.04 kB
TypeScript
/**
* 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 { PosPayment } from './PosPayment';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetPosPaymentsResponse
*/
export interface GetPosPaymentsResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetPosPaymentsResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetPosPaymentsResponse
*/
status: string;
/**
* Apideck ID of service provider
* @type {string}
* @memberof GetPosPaymentsResponse
*/
service: string;
/**
* Unified API resource name
* @type {string}
* @memberof GetPosPaymentsResponse
*/
resource: string;
/**
* Operation performed
* @type {string}
* @memberof GetPosPaymentsResponse
*/
operation: string;
/**
*
* @type {Array<PosPayment>}
* @memberof GetPosPaymentsResponse
*/
data: Array<PosPayment>;
/**
*
* @type {Meta}
* @memberof GetPosPaymentsResponse
*/
meta?: Meta;
/**
*
* @type {Links}
* @memberof GetPosPaymentsResponse
*/
links?: Links;
/**
*
* @type {Raw}
* @memberof GetPosPaymentsResponse
*/
_raw?: Raw | null;
}
export declare function GetPosPaymentsResponseFromJSON(json: any): GetPosPaymentsResponse;
export declare function GetPosPaymentsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPosPaymentsResponse;
export declare function GetPosPaymentsResponseToJSON(value?: GetPosPaymentsResponse | null): any;