/**
 * Agravity OpenAPI Documentation - Public 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];
}
