class ShopifyAPI::CustomerAddress

def set(

def set(
  address_ids: nil,
  operation: nil,
  body: nil,
  **kwargs
)
  self.class.request(
    http_method: :put,
    operation: :set,
    session: @session,
    ids: {customer_id: @customer_id},
    params: {address_ids: address_ids, operation: operation}.merge(kwargs).compact,
    body: body,
    entity: self,
  )
end