UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

82 lines (81 loc) 2.37 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 ProductFamilyExternal */ export interface ProductFamilyExternal { /** * DateTime at which the object was created, in 'ISO 8601' format. * @type {Date} * @memberof ProductFamilyExternal */ createdAt: Date; /** * * @type {string} * @memberof ProductFamilyExternal */ description: string | null; /** * A JSON object representing the hierarchy within the family. * @type {string} * @memberof ProductFamilyExternal */ hierarchy?: string; /** * Unique identifier of the product family. * @type {string} * @memberof ProductFamilyExternal */ id: string; /** * If true, indicates that this object has been deleted * @type {boolean} * @memberof ProductFamilyExternal */ isDeleted?: boolean; /** * Name of the product family. * @type {string} * @memberof ProductFamilyExternal */ name: string; /** * * @type {ObjectName} * @memberof ProductFamilyExternal */ object?: ObjectName; /** * List of products in the family * @type {Array<string>} * @memberof ProductFamilyExternal */ products: Array<string>; /** * DateTime at which the object was updated, in 'ISO 8601' format. * @type {Date} * @memberof ProductFamilyExternal */ updatedAt: Date; } /** * Check if a given object implements the ProductFamilyExternal interface. */ export declare function instanceOfProductFamilyExternal(value: object): value is ProductFamilyExternal; export declare function ProductFamilyExternalFromJSON(json: any): ProductFamilyExternal; export declare function ProductFamilyExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductFamilyExternal; export declare function ProductFamilyExternalToJSON(json: any): ProductFamilyExternal; export declare function ProductFamilyExternalToJSONTyped(value?: ProductFamilyExternal | null, ignoreDiscriminator?: boolean): any;