UNPKG

wallee

Version:
22 lines (21 loc) 1.17 kB
/** * * @export * @interface PaymentAppProcessorDetailsCreate */ export interface PaymentAppProcessorDetailsCreate { /** * A client-generated nonce which uniquely identifies some action to be executed. Subsequent requests with the same external ID do not execute the action again, but return the original result. * @type {string} * @memberof PaymentAppProcessorDetailsCreate */ externalId?: string; } /** * Check if a given object implements the PaymentAppProcessorDetailsCreate interface. */ export declare function instanceOfPaymentAppProcessorDetailsCreate(value: object): value is PaymentAppProcessorDetailsCreate; export declare function PaymentAppProcessorDetailsCreateFromJSON(json: any): PaymentAppProcessorDetailsCreate; export declare function PaymentAppProcessorDetailsCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentAppProcessorDetailsCreate; export declare function PaymentAppProcessorDetailsCreateToJSON(json: any): PaymentAppProcessorDetailsCreate; export declare function PaymentAppProcessorDetailsCreateToJSONTyped(value?: PaymentAppProcessorDetailsCreate | null, ignoreDiscriminator?: boolean): any;