@c10t/nice-component-library
Version:
nice-component-library
17 lines (16 loc) • 528 B
TypeScript
import { UserAuthentication } from './user.authentication';
import { Authority } from './authority';
export declare class OAuth2AuthenticationDto {
userAuthentication: UserAuthentication | null;
authorities: Authority[] | null;
name: string | null;
orgId: number | null;
orgCode: string | null;
orgName: string | null;
orgType: string | null;
orgForm: string | null;
orgPath: string | null;
orgIsApproveVo: boolean | null;
sapId: number | null;
voAuthentication: string | null;
}