UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

51 lines (50 loc) 1.6 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 UpdateProductFamilyRequest */ export interface UpdateProductFamilyRequest { /** * * @type {string} * @memberof UpdateProductFamilyRequest */ description?: string | null; /** * * @type {string} * @memberof UpdateProductFamilyRequest */ hierarchy?: string | null; /** * * @type {string} * @memberof UpdateProductFamilyRequest */ name: string | null; /** * List of unique id's for the products in this family. * @type {Array<string>} * @memberof UpdateProductFamilyRequest */ products: Array<string>; } /** * Check if a given object implements the UpdateProductFamilyRequest interface. */ export declare function instanceOfUpdateProductFamilyRequest(value: object): value is UpdateProductFamilyRequest; export declare function UpdateProductFamilyRequestFromJSON(json: any): UpdateProductFamilyRequest; export declare function UpdateProductFamilyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateProductFamilyRequest; export declare function UpdateProductFamilyRequestToJSON(json: any): UpdateProductFamilyRequest; export declare function UpdateProductFamilyRequestToJSONTyped(value?: UpdateProductFamilyRequest | null, ignoreDiscriminator?: boolean): any;