/** * 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 GetEkeys200ResponseAllOfListInner */ export interface GetEkeys200ResponseAllOfListInner { /** * eKeyId * @type {number} * @memberof GetEkeys200ResponseAllOfListInner */ keyId?: number; /** * Lock ID, generated by Lock init * @type {number} * @memberof GetEkeys200ResponseAllOfListInner */ lockId?: number; /** * Username of an ekey owner * @type {string} * @memberof GetEkeys200ResponseAllOfListInner */ username?: string; /** * Key name * @type {string} * @memberof GetEkeys200ResponseAllOfListInner */ keyName?: string; /** * eKey status * @type {string} * @memberof GetEkeys200ResponseAllOfListInner */ keyStatus?: string; /** * The time when it becomes valid (timestamp in millisecond) * @type {number} * @memberof GetEkeys200ResponseAllOfListInner */ startDate?: number; /** * The time when it is expired (timestamp in millisecond) * @type {number} * @memberof GetEkeys200ResponseAllOfListInner */ endDate?: number; /** * Comment * @type {string} * @memberof GetEkeys200ResponseAllOfListInner */ remarks?: string; /** * Is ekey authorized - 0-NO, 1-yes * @type {number} * @memberof GetEkeys200ResponseAllOfListInner */ keyRight?: GetEkeys200ResponseAllOfListInnerKeyRightEnum; /** * The sender's username * @type {string} * @memberof GetEkeys200ResponseAllOfListInner */ senderUsername?: string; /** * Send time (timestamp in millisecond) * @type {number} * @memberof GetEkeys200ResponseAllOfListInner */ date?: number; } /** * @export */ export declare const GetEkeys200ResponseAllOfListInnerKeyRightEnum: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type GetEkeys200ResponseAllOfListInnerKeyRightEnum = typeof GetEkeys200ResponseAllOfListInnerKeyRightEnum[keyof typeof GetEkeys200ResponseAllOfListInnerKeyRightEnum]; /** * Check if a given object implements the GetEkeys200ResponseAllOfListInner interface. */ export declare function instanceOfGetEkeys200ResponseAllOfListInner(value: object): boolean; export declare function GetEkeys200ResponseAllOfListInnerFromJSON(json: any): GetEkeys200ResponseAllOfListInner; export declare function GetEkeys200ResponseAllOfListInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetEkeys200ResponseAllOfListInner; export declare function GetEkeys200ResponseAllOfListInnerToJSON(value?: GetEkeys200ResponseAllOfListInner | null): any; //# sourceMappingURL=GetEkeys200ResponseAllOfListInner.d.ts.map