@dodi-smart/nuki-graphql-api
Version:
Nuki GraphQL API
39 lines • 710 B
TypeScript
export type AccountUser = {
/**
* The account user id
*/
accountUserId: number;
/**
* The account id
*/
accountId: number;
/**
* The optional type: 0 .. user, 1 .. company
*/
type?: number;
/**
* The email address
*/
email: string;
/**
* The name
*/
name: string;
/**
* The language code
*/
language?: string;
/**
* The operation id - if set it's locked for another operation
*/
readonly operationId?: string;
/**
* The creation date
*/
creationDate: string;
/**
* The update date
*/
updateDate: string;
};
//# sourceMappingURL=AccountUser.d.ts.map