class Google::Apis::ContentV2::OrderDeliveryDetails

Attributes

address[RW]

The delivery address Corresponds to the JSON property `address` @return [Google::Apis::ContentV2::OrderAddress]

phone_number[RW]

The phone number of the person receiving the delivery. Corresponds to the JSON property `phoneNumber` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 4555
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2/classes.rb, line 4560
def update!(**args)
  @address = args[:address] if args.key?(:address)
  @phone_number = args[:phone_number] if args.key?(:phone_number)
end