Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 942 Bytes

File metadata and controls

24 lines (18 loc) · 942 Bytes

UltracartClient::SfvbFileUploadUrlResponse

Properties

Name Type Description Notes
expires_in_seconds Integer Seconds until the upload URL stops working. Ask for a new one rather than holding this across a long job. [optional]
http_method String HTTP method the upload URL expects. [optional]
key String Quote this back to the upload endpoint once the bytes are in place. It identifies the uploaded object and is bound to your account. [optional]
upload_url String Send the raw bytes to this URL. It is short lived and single use, and it is not part of this API - do not send an Authorization header with it. [optional]

Example

require 'ultracart_api'

instance = UltracartClient::SfvbFileUploadUrlResponse.new(
  expires_in_seconds: null,
  http_method: null,
  key: null,
  upload_url: null
)