sindri
Version:
The Sindri Labs JavaScript SDK and CLI tool.
23 lines (21 loc) • 449 B
text/typescript
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Client input to obtain an API key.
*/
export type ObtainApikeyInput = {
/**
* Your account username.
*/
username: string;
/**
* Your account password.
*/
password: string;
/**
* A human readable name for your API key used to identify it when managing keys.
*/
name?: string;
};