/** * 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 ShowProductChildAssetsRequest */ export interface ShowProductChildAssetsRequest { /** * * @type {number} * @memberof ShowProductChildAssetsRequest */ overlayTemplateId?: number | null; } /** * Check if a given object implements the ShowProductChildAssetsRequest interface. */ export declare function instanceOfShowProductChildAssetsRequest(value: object): value is ShowProductChildAssetsRequest; export declare function ShowProductChildAssetsRequestFromJSON(json: any): ShowProductChildAssetsRequest; export declare function ShowProductChildAssetsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShowProductChildAssetsRequest; export declare function ShowProductChildAssetsRequestToJSON(json: any): ShowProductChildAssetsRequest; export declare function ShowProductChildAssetsRequestToJSONTyped(value?: ShowProductChildAssetsRequest | null, ignoreDiscriminator?: boolean): any;