/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * 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 CreateProductTypeRequest */ export interface CreateProductTypeRequest { /** * * @type {string} * @memberof CreateProductTypeRequest */ name: string; } /** * Check if a given object implements the CreateProductTypeRequest interface. */ export declare function instanceOfCreateProductTypeRequest(value: object): value is CreateProductTypeRequest; export declare function CreateProductTypeRequestFromJSON(json: any): CreateProductTypeRequest; export declare function CreateProductTypeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateProductTypeRequest; export declare function CreateProductTypeRequestToJSON(json: any): CreateProductTypeRequest; export declare function CreateProductTypeRequestToJSONTyped(value?: CreateProductTypeRequest | null, ignoreDiscriminator?: boolean): any;