Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.25 KB

EndUserDocumentObjResponse.md

File metadata and controls

30 lines (24 loc) · 1.25 KB

Pinwheel::EndUserDocumentObjResponse

Properties

Name Type Description Notes
created_at Time ISO 8601 timestamp of created time.
end_user_id String User ID provided by you, to associate Pinwheel users with your user model. Required if `account_id` is not provided. This ID will be returned in all webhook events and all account-affiliated API responses. Leading and trailing whitespace will be stripped. Do not include PII in this identifier.
document DocumentObjPublicResponseItem A document.
document_type String
parsed_data ParsedData [optional]
warnings Array<FieldWarning> Used to indicate if there are any warnings for fields returned in this response. [optional]
fraud SharedFraud Used to indicate any fraud indications in this document. [optional]

Example

require 'pinwheel'

instance = Pinwheel::EndUserDocumentObjResponse.new(
  created_at: null,
  end_user_id: null,
  document: null,
  document_type: null,
  parsed_data: null,
  warnings: null,
  fraud: null
)