@dodi-smart/nuki-graphql-api
Version:
Nuki GraphQL API
56 lines • 1.15 kB
TypeScript
export type Address = {
/**
* The address id
*/
addressId: number;
/**
* The account id
*/
accountId: number;
/**
* The name of the address
*/
name: string;
/**
* The smartlocks for this address
*/
smartlockIds: Array<number>;
/**
* The optional service id if the address is from an partner service
*/
serviceId?: Address.serviceId;
/**
* The timezone
*/
timeZone?: string;
/**
* The optional check in time (minutes of the day)
*/
checkInTime?: number;
/**
* The optional check out time (minutes of the day)
*/
checkOutTime?: number;
/**
* The optional settings object
*/
settings?: Record<string, any>;
/**
* The creation date
*/
creationDate: string;
/**
* The update date
*/
updateDate: string;
};
export declare namespace Address {
/**
* The optional service id if the address is from an partner service
*/
enum serviceId {
AIRBNB = "airbnb",
BOOKINGSYNC = "bookingsync"
}
}
//# sourceMappingURL=Address.d.ts.map