/** * TTLock * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v3.1.9 * * * 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 GatewayUpdateCheck200ResponseAllOf */ export interface GatewayUpdateCheck200ResponseAllOf { /** * is update available 0 - no, 1 - yes, 2 - unknown * @type {number} * @memberof GatewayUpdateCheck200ResponseAllOf */ needUpgrade?: GatewayUpdateCheck200ResponseAllOfNeedUpgradeEnum; } /** * @export */ export declare const GatewayUpdateCheck200ResponseAllOfNeedUpgradeEnum: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; readonly NUMBER_2: 2; }; export type GatewayUpdateCheck200ResponseAllOfNeedUpgradeEnum = typeof GatewayUpdateCheck200ResponseAllOfNeedUpgradeEnum[keyof typeof GatewayUpdateCheck200ResponseAllOfNeedUpgradeEnum]; /** * Check if a given object implements the GatewayUpdateCheck200ResponseAllOf interface. */ export declare function instanceOfGatewayUpdateCheck200ResponseAllOf(value: object): boolean; export declare function GatewayUpdateCheck200ResponseAllOfFromJSON(json: any): GatewayUpdateCheck200ResponseAllOf; export declare function GatewayUpdateCheck200ResponseAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewayUpdateCheck200ResponseAllOf; export declare function GatewayUpdateCheck200ResponseAllOfToJSON(value?: GatewayUpdateCheck200ResponseAllOf | null): any; //# sourceMappingURL=GatewayUpdateCheck200ResponseAllOf.d.ts.map