UNPKG

wallee

Version:
36 lines (35 loc) 1.01 kB
import { Space } from "./Space"; declare class WebAppConfirmationResponse { /** * The access code granting permissions to the web service API according to the OAuth standard. */ 'accessToken'?: string; /** * The list of the permissions granted to the web app within the space. */ 'scope'?: string; /** * The space that the web app was installed in. */ 'space'?: Space; /** * The state parameter that was provided in the authorization request. */ 'state'?: string; /** * The type of the access token that determines the authentication mechanism to use for accessing the web service API. */ 'tokenType'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { WebAppConfirmationResponse };