@dodi-smart/nuki-graphql-api
Version:
Nuki GraphQL API
27 lines • 438 B
TypeScript
export type ApiKey = {
/**
* The id
*/
apiKeyId: number;
/**
* The account id
*/
accountId: number;
/**
* The description
*/
description?: string;
/**
* The redirect uris
*/
redirectUris?: Array<string>;
/**
* The creation date
*/
creationDate: string;
/**
* The api key
*/
apiKey?: string;
};
//# sourceMappingURL=ApiKey.d.ts.map