/** * 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 AttributeListResource */ export interface AttributeListResource { /** * * @type {number} * @memberof AttributeListResource */ id: number; /** * * @type {string} * @memberof AttributeListResource */ name: string; /** * * @type {string} * @memberof AttributeListResource */ type: string; /** * * @type {boolean} * @memberof AttributeListResource */ isFilterable: boolean; /** * * @type {number} * @memberof AttributeListResource */ filterIndex: number; } /** * Check if a given object implements the AttributeListResource interface. */ export declare function instanceOfAttributeListResource(value: object): value is AttributeListResource; export declare function AttributeListResourceFromJSON(json: any): AttributeListResource; export declare function AttributeListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeListResource; export declare function AttributeListResourceToJSON(json: any): AttributeListResource; export declare function AttributeListResourceToJSONTyped(value?: AttributeListResource | null, ignoreDiscriminator?: boolean): any;