/** * 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 OrderStatusWithCountResource */ export interface OrderStatusWithCountResource { /** * * @type {number} * @memberof OrderStatusWithCountResource */ id: number; /** * * @type {string} * @memberof OrderStatusWithCountResource */ name: string; /** * * @type {string} * @memberof OrderStatusWithCountResource */ shortName: string; /** * * @type {number} * @memberof OrderStatusWithCountResource */ displayOrder: number; /** * * @type {boolean} * @memberof OrderStatusWithCountResource */ isOrderNetsuiteSyncable: boolean; /** * * @type {number} * @memberof OrderStatusWithCountResource */ ordersCount: number; } /** * Check if a given object implements the OrderStatusWithCountResource interface. */ export declare function instanceOfOrderStatusWithCountResource(value: object): value is OrderStatusWithCountResource; export declare function OrderStatusWithCountResourceFromJSON(json: any): OrderStatusWithCountResource; export declare function OrderStatusWithCountResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderStatusWithCountResource; export declare function OrderStatusWithCountResourceToJSON(json: any): OrderStatusWithCountResource; export declare function OrderStatusWithCountResourceToJSONTyped(value?: OrderStatusWithCountResource | null, ignoreDiscriminator?: boolean): any;