/** * 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 GetLockDetailsResponse */ export interface GetLockDetailsResponse { /** * Lock id * @type {number} * @memberof GetLockDetailsResponse */ lockId?: number; /** * Lock name * @type {string} * @memberof GetLockDetailsResponse */ lockName?: string; /** * Lock alias name * @type {string} * @memberof GetLockDetailsResponse */ lockAlias?: string; /** * Lock MAC address * @type {string} * @memberof GetLockDetailsResponse */ lockMac?: string; /** * Lock battery * @type {number} * @memberof GetLockDetailsResponse */ electricQuantity?: number; /** * characteristic value. it is used to indicate what kinds of feature do a lock support. * @type {string} * @memberof GetLockDetailsResponse */ featureValue?: string; /** * The offset between your time zone and UTC, in millisecond * @type {number} * @memberof GetLockDetailsResponse */ timezoneRawOffset?: number; /** * Product model (for firmware update) * @type {string} * @memberof GetLockDetailsResponse */ modelNum?: string; /** * Hardware version (for firmware update) * @type {string} * @memberof GetLockDetailsResponse */ hardwareRevision?: string; /** * Firmware version (for firmware update) * @type {string} * @memberof GetLockDetailsResponse */ firmwareRevision?: string; /** * Lock init time (timestamp in millisecond) * @type {number} * @memberof GetLockDetailsResponse */ date?: number; } /** * Check if a given object implements the GetLockDetailsResponse interface. */ export declare function instanceOfGetLockDetailsResponse(value: object): boolean; export declare function GetLockDetailsResponseFromJSON(json: any): GetLockDetailsResponse; export declare function GetLockDetailsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetLockDetailsResponse; export declare function GetLockDetailsResponseToJSON(value?: GetLockDetailsResponse | null): any; //# sourceMappingURL=GetLockDetailsResponse.d.ts.map