Conekta::CustomerUpdateShippingContactsRequest

July 21, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
phoneStringPhone contact[optional]
receiverStringName of the person who will receive the order[optional]
between_streetsStringThe street names between which the order will be delivered.[optional]
addressCustomerShippingContactsRequestAddress[optional]
parent_idString[optional]
defaultBoolean[optional]
deletedBoolean[optional]

Example

require 'conekta'

instance = Conekta::CustomerUpdateShippingContactsRequest.new(
  phone: +525511223344,
  receiver: Marvin Fuller,
  between_streets: Ackerman Crescent,
  address: null,
  parent_id: null,
  default: null,
  deleted: null
)