Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 901 Bytes

CustomerUpdateShippingContacts.md

File metadata and controls

30 lines (24 loc) · 901 Bytes

Conekta::CustomerUpdateShippingContacts

Properties

Name Type Description Notes
phone String Phone contact [optional]
receiver String Name of the person who will receive the order [optional]
between_streets String The street names between which the order will be delivered. [optional]
address CustomerShippingContactsAddress [optional]
parent_id String [optional]
default Boolean [optional]
deleted Boolean [optional]

Example

require 'conekta'

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