/** * 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. */ import type { AssetResource } from './AssetResource'; /** * * @export * @interface ProductChildRelationResource */ export interface ProductChildRelationResource { /** * * @type {number} * @memberof ProductChildRelationResource */ id: number; /** * * @type {string} * @memberof ProductChildRelationResource */ name: string; /** * * @type {string} * @memberof ProductChildRelationResource */ model: string; /** * * @type {number} * @memberof ProductChildRelationResource */ sku: number; /** * * @type {string} * @memberof ProductChildRelationResource */ netsuiteId?: string | null; /** * * @type {AssetResource} * @memberof ProductChildRelationResource */ thumbnail: AssetResource | null; /** * * @type {object} * @memberof ProductChildRelationResource */ dateAdded: object; } /** * Check if a given object implements the ProductChildRelationResource interface. */ export declare function instanceOfProductChildRelationResource(value: object): value is ProductChildRelationResource; export declare function ProductChildRelationResourceFromJSON(json: any): ProductChildRelationResource; export declare function ProductChildRelationResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildRelationResource; export declare function ProductChildRelationResourceToJSON(json: any): ProductChildRelationResource; export declare function ProductChildRelationResourceToJSONTyped(value?: ProductChildRelationResource | null, ignoreDiscriminator?: boolean): any;