@dodi-smart/nuki-graphql-api
Version:
Nuki GraphQL API
27 lines • 446 B
TypeScript
export type ApiKeyToken = {
/**
* The id
*/
id: string;
/**
* The account id
*/
accountId: number;
/**
* The description
*/
description?: string;
/**
* The access token
*/
accessToken?: string;
/**
* The list of scopes
*/
scopes: Array<string>;
/**
* The creation date
*/
creationDate: string;
};
//# sourceMappingURL=ApiKeyToken.d.ts.map