dt-common-device
Version:
A secure and robust device management library for IoT applications
30 lines (29 loc) • 683 B
TypeScript
export interface IProperty {
id: string;
name: string;
apartment: string;
city: string;
country: string;
state: string;
street: string;
zipCode: string;
createdBy?: string;
isDeleted: boolean;
imageURL: string;
timezone: string;
officialName?: string;
sameAsOfficialName?: boolean;
phoneNumber?: string;
phoneNumberCountryCode?: string;
propertyKey?: string;
hubNetworkId?: string;
isTimeZoneOverridden: boolean;
createdAt: string;
updatedAt: string;
propertyBillingId?: string;
}
export interface IPropertySettings {
id: string;
propertyId: string;
settings: Record<string, any>;
}