Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.01 KB

UpdateCredentialsRequest.md

File metadata and controls

26 lines (20 loc) · 1.01 KB

WorldnetPayments::UpdateCredentialsRequest

Properties

Name Type Description Notes
terminal String The number of the terminal which is the credentials' holder.
operator String The operator who initiated the transaction. If not sent in the request, this field will be automatically populated with the API Key alias. [optional]
customer Customer [optional]
customer_account UpdatablePayload [optional]
additional_data_fields Array<CustomField> List of custom fields to add or update. An empty list will lead to the removal of any existing additional data associated with the credentials. [optional]

Example

require 'worldnet_payments'

instance = WorldnetPayments::UpdateCredentialsRequest.new(
  terminal: null,
  operator: null,
  customer: null,
  customer_account: null,
  additional_data_fields: null
)