Type Alias OAuthApplicationProps

OAuthApplicationProps: {
    clientId: string;
    clientSecret: string;
    confidential: boolean;
    description: string;
    name: string;
    redirectUri: string;
    scopes: ScopeValues[];
    sys: OAuthApplicationSysProps;
}