interface OAuthApplication {
    clientId: string;
    clientSecret: string;
    confidential: boolean;
    description: string;
    name: string;
    redirectUri: string;
    scopes: ScopeValues[];
    sys: OAuthApplicationSysProps;
    delete(): Promise<void>;
    toPlainObject(): OAuthApplicationProps;
    update(): Promise<OAuthApplicationProps>;
}

Hierarchy (view full)

Properties

clientId: string
clientSecret: string
confidential: boolean
description: string
name: string
redirectUri: string
scopes: ScopeValues[]
sys: OAuthApplicationSysProps

Methods