UNPKG

@apideck/node

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