UNPKG

@apideck/node

Version:
29 lines (28 loc) 913 B
/** * 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 { PaymentCard } from './PaymentCard'; /** * * @export * @interface PosPaymentCardDetails */ export interface PosPaymentCardDetails { /** * * @type {PaymentCard} * @memberof PosPaymentCardDetails */ card?: PaymentCard | null; } export declare function PosPaymentCardDetailsFromJSON(json: any): PosPaymentCardDetails; export declare function PosPaymentCardDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PosPaymentCardDetails; export declare function PosPaymentCardDetailsToJSON(value?: PosPaymentCardDetails | null): any;