UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

51 lines (50 loc) 1.68 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 CreateProductFamilyRequest */ export interface CreateProductFamilyRequest { /** * * @type {string} * @memberof CreateProductFamilyRequest */ description?: string | null; /** * A JSON object representing the hierarchy within the family. * @type {string} * @memberof CreateProductFamilyRequest */ hierarchy?: string; /** * The name of the product family. * @type {string} * @memberof CreateProductFamilyRequest */ name: string; /** * List of unique id's for the products in this family. * @type {Array<string>} * @memberof CreateProductFamilyRequest */ products: Array<string>; } /** * Check if a given object implements the CreateProductFamilyRequest interface. */ export declare function instanceOfCreateProductFamilyRequest(value: object): value is CreateProductFamilyRequest; export declare function CreateProductFamilyRequestFromJSON(json: any): CreateProductFamilyRequest; export declare function CreateProductFamilyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateProductFamilyRequest; export declare function CreateProductFamilyRequestToJSON(json: any): CreateProductFamilyRequest; export declare function CreateProductFamilyRequestToJSONTyped(value?: CreateProductFamilyRequest | null, ignoreDiscriminator?: boolean): any;