@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 402 B
TypeScript
import { Label } from './api/Label';
import { PermissionEnum } from './api/PermissionEnum';
/** Missing description */
export interface TokenCreation {
/** Description for the new token */
description?: string;
/** Labels for the new token */
labels?: Label[];
/** Type of the new token. Read or Write */
permission: PermissionEnum;
}
//# sourceMappingURL=TokenCreation.d.ts.map