class Google::Apis::MybusinessverificationsV1::AddressVerificationData
Display data for verifications through postcard.
Attributes
Represents a postal address, e.g. for postal delivery or payments addresses. Given a postal address, a postal service can deliver items to a premise, P.O. Box or similar. It is not intended to model geographical locations (roads, towns, mountains). In typical usage an address would be created via user input or from importing existing data, depending on the type of process. Advice on address input / editing: - Use an i18n-ready address widget such as https:// github.com/google/libaddressinput) - Users should not be presented with UI elements for input or editing of fields outside countries where that field is used. For more guidance on how to use this schema, please see: support. google.com/business/answer/6397478 Corresponds to the JSON property `address` @return [Google::Apis::MybusinessverificationsV1::PostalAddress]
Merchant's business name. Corresponds to the JSON property `business` @return [String]
Expected number of days it takes to deliver a postcard to the address's region. Corresponds to the JSON property `expectedDeliveryDaysRegion` @return [Fixnum]
Public Class Methods
# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 53 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/mybusinessverifications_v1/classes.rb, line 58 def update!(**args) @address = args[:address] if args.key?(:address) @business = args[:business] if args.key?(:business) @expected_delivery_days_region = args[:expected_delivery_days_region] if args.key?(:expected_delivery_days_region) end