@agravity/private
Version:
The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend
28 lines (26 loc) • 738 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 PortalAuthentication {
method?: PortalAuthentication.MethodEnum;
issuer?: string | null;
client_id?: string | null;
tenant_id?: string | null;
password?: string | null;
}
export namespace PortalAuthentication {
export const MethodEnum = {
Undefined: 'UNDEFINED',
None: 'NONE',
Password: 'PASSWORD',
Eeid: 'EEID',
Auth0: 'AUTH0'
} as const;
export type MethodEnum = (typeof MethodEnum)[keyof typeof MethodEnum];
}