Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1016 Bytes

File metadata and controls

28 lines (22 loc) · 1016 Bytes

UltracartClient::OauthDeviceAuthorizationResponse

Properties

Name Type Description Notes
device_code String The device verification code [optional]
expires_in Integer The lifetime in seconds of the device_code and user_code [optional]
interval Integer The minimum amount of time in seconds the client should wait between polling requests [optional]
user_code String The end-user verification code [optional]
verification_uri String The end-user verification URI on the authorization server [optional]
verification_uri_complete String The verification URI with the user code pre-filled [optional]

Example

require 'ultracart_api'

instance = UltracartClient::OauthDeviceAuthorizationResponse.new(
  device_code: null,
  expires_in: null,
  interval: null,
  user_code: null,
  verification_uri: null,
  verification_uri_complete: null
)