@agravity/private
Version:
The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend
29 lines (27 loc) • 756 B
text/typescript
/**
* Agravity OpenAPI Documentation - Private Functions
*
* Contact: support@agravity.io
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface AzureIdentity {
id?: string | null;
name?: string | null;
description?: string | null;
email?: string | null;
ident_type?: AzureIdentity.IdentTypeEnum | null;
}
export namespace AzureIdentity {
export const IdentTypeEnum = {
User: 'USER',
Group: 'GROUP',
Apikey: 'APIKEY',
Apikeyuser: 'APIKEYUSER',
Portal: 'PORTAL',
Shared: 'SHARED'
} as const;
export type IdentTypeEnum = (typeof IdentTypeEnum)[keyof typeof IdentTypeEnum];
}