/** * 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 { AssetLiteResource } from './AssetLiteResource'; import type { ProductChildSiteDetailLiteResource } from './ProductChildSiteDetailLiteResource'; /** * * @export * @interface ProductChildListResource */ export interface ProductChildListResource { /** * * @type {number} * @memberof ProductChildListResource */ id: number; /** * * @type {string} * @memberof ProductChildListResource */ parentId?: string | null; /** * * @type {number} * @memberof ProductChildListResource */ sku: number; /** * * @type {string} * @memberof ProductChildListResource */ name: string; /** * * @type {string} * @memberof ProductChildListResource */ fullName: string; /** * * @type {string} * @memberof ProductChildListResource */ model: string; /** * * @type {number} * @memberof ProductChildListResource */ stock: number; /** * * @type {string} * @memberof ProductChildListResource */ isDisabled?: string | null; /** * * @type {boolean} * @memberof ProductChildListResource */ displayInSocialFeed: boolean; /** * * @type {string} * @memberof ProductChildListResource */ quantity?: string | null; /** * * @type {number} * @memberof ProductChildListResource */ netsuiteId: number; /** * * @type {AssetLiteResource} * @memberof ProductChildListResource */ thumbnail: AssetLiteResource | null; /** * * @type {Array} * @memberof ProductChildListResource */ siteDetails: Array | null; } /** * Check if a given object implements the ProductChildListResource interface. */ export declare function instanceOfProductChildListResource(value: object): value is ProductChildListResource; export declare function ProductChildListResourceFromJSON(json: any): ProductChildListResource; export declare function ProductChildListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildListResource; export declare function ProductChildListResourceToJSON(json: any): ProductChildListResource; export declare function ProductChildListResourceToJSONTyped(value?: ProductChildListResource | null, ignoreDiscriminator?: boolean): any;