UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

33 lines (32 loc) 1.16 kB
/** * 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 UpdatePaymentLinkRequest */ export interface UpdatePaymentLinkRequest { /** * * @type {boolean} * @memberof UpdatePaymentLinkRequest */ pinned?: boolean | null; } /** * Check if a given object implements the UpdatePaymentLinkRequest interface. */ export declare function instanceOfUpdatePaymentLinkRequest(value: object): value is UpdatePaymentLinkRequest; export declare function UpdatePaymentLinkRequestFromJSON(json: any): UpdatePaymentLinkRequest; export declare function UpdatePaymentLinkRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePaymentLinkRequest; export declare function UpdatePaymentLinkRequestToJSON(json: any): UpdatePaymentLinkRequest; export declare function UpdatePaymentLinkRequestToJSONTyped(value?: UpdatePaymentLinkRequest | null, ignoreDiscriminator?: boolean): any;