@getopenpay/client
Version:
OpenPay API TypeScript SDK
33 lines (32 loc) • 1.1 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface UpdatePaymentIntent
*/
export interface UpdatePaymentIntent {
/**
*
* @type {object}
* @memberof UpdatePaymentIntent
*/
customFields?: object | null;
}
/**
* Check if a given object implements the UpdatePaymentIntent interface.
*/
export declare function instanceOfUpdatePaymentIntent(value: object): value is UpdatePaymentIntent;
export declare function UpdatePaymentIntentFromJSON(json: any): UpdatePaymentIntent;
export declare function UpdatePaymentIntentFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePaymentIntent;
export declare function UpdatePaymentIntentToJSON(json: any): UpdatePaymentIntent;
export declare function UpdatePaymentIntentToJSONTyped(value?: UpdatePaymentIntent | null, ignoreDiscriminator?: boolean): any;