UNPKG

wallee

Version:
16 lines (15 loc) 785 B
/** * * @export * @interface PaymentAppProcessorDetails */ export interface PaymentAppProcessorDetails { } /** * Check if a given object implements the PaymentAppProcessorDetails interface. */ export declare function instanceOfPaymentAppProcessorDetails(value: object): value is PaymentAppProcessorDetails; export declare function PaymentAppProcessorDetailsFromJSON(json: any): PaymentAppProcessorDetails; export declare function PaymentAppProcessorDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentAppProcessorDetails; export declare function PaymentAppProcessorDetailsToJSON(json: any): PaymentAppProcessorDetails; export declare function PaymentAppProcessorDetailsToJSONTyped(value?: PaymentAppProcessorDetails | null, ignoreDiscriminator?: boolean): any;