@agravity/private
Version:
The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend
28 lines (26 loc) • 801 B
text/typescript
/**
* Agravity OpenAPI Documentation - Private Functions
*
* Contact: office@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 type IdentTypeEnum = 'USER' | 'GROUP' | 'APIKEY' | 'PORTAL' | 'SHARED';
export const IdentTypeEnum = {
User: 'USER' as IdentTypeEnum,
Group: 'GROUP' as IdentTypeEnum,
Apikey: 'APIKEY' as IdentTypeEnum,
Portal: 'PORTAL' as IdentTypeEnum,
Shared: 'SHARED' as IdentTypeEnum
};
}