Oauth2RequestTokenRequestBody Supported Types components.AuthorizationCodeTokenRequest const value: components.AuthorizationCodeTokenRequest = { grantType: "authorization_code", clientId: "<id>", clientSecret: "<value>", code: "<value>", redirectUri: "https://bleak-makeover.biz/", }; components.RefreshTokenRequest const value: components.RefreshTokenRequest = { grantType: "refresh_token", clientId: "<id>", clientSecret: "<value>", refreshToken: "<value>", }; components.WebTokenRequest const value: components.WebTokenRequest = { grantType: "web", clientId: "<id>", clientSecret: "<value>", sessionToken: "<value>", };