UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

70 lines (69 loc) 2.36 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. */ import type { ObjectName } from './ObjectName'; /** * * @export * @interface PaymentLinkProductBundleExternal */ export interface PaymentLinkProductBundleExternal { /** * DateTime at which the object was created, in 'ISO 8601' format. * @type {Date} * @memberof PaymentLinkProductBundleExternal */ createdAt: Date; /** * Unique identifier of the payment link product bundle. * @type {string} * @memberof PaymentLinkProductBundleExternal */ id: string; /** * If true, indicates that this object has been deleted * @type {boolean} * @memberof PaymentLinkProductBundleExternal */ isDeleted?: boolean; /** * * @type {ObjectName} * @memberof PaymentLinkProductBundleExternal */ object?: ObjectName; /** * The ID of the payment link associated with this bundle * @type {string} * @memberof PaymentLinkProductBundleExternal */ paymentLinkId: string; /** * Unique identifier of the product bundle. * @type {string} * @memberof PaymentLinkProductBundleExternal */ productBundleId: string; /** * DateTime at which the object was updated, in 'ISO 8601' format. * @type {Date} * @memberof PaymentLinkProductBundleExternal */ updatedAt: Date; } /** * Check if a given object implements the PaymentLinkProductBundleExternal interface. */ export declare function instanceOfPaymentLinkProductBundleExternal(value: object): value is PaymentLinkProductBundleExternal; export declare function PaymentLinkProductBundleExternalFromJSON(json: any): PaymentLinkProductBundleExternal; export declare function PaymentLinkProductBundleExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentLinkProductBundleExternal; export declare function PaymentLinkProductBundleExternalToJSON(json: any): PaymentLinkProductBundleExternal; export declare function PaymentLinkProductBundleExternalToJSONTyped(value?: PaymentLinkProductBundleExternal | null, ignoreDiscriminator?: boolean): any;