Class: Google::Apis::ContentV2::PickupCarrierService
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::PickupCarrierService
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#carrier_name ⇒ String
The name of the pickup carrier (e.g.,
"UPS"
). -
#service_name ⇒ String
The name of the pickup service (e.g.,
"Access point"
).
Instance Method Summary collapse
-
#initialize(**args) ⇒ PickupCarrierService
constructor
A new instance of PickupCarrierService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PickupCarrierService
Returns a new instance of PickupCarrierService.
7964 7965 7966 |
# File 'generated/google/apis/content_v2/classes.rb', line 7964 def initialize(**args) update!(**args) end |
Instance Attribute Details
#carrier_name ⇒ String
The name of the pickup carrier (e.g., "UPS"
). Required.
Corresponds to the JSON property carrierName
7957 7958 7959 |
# File 'generated/google/apis/content_v2/classes.rb', line 7957 def carrier_name @carrier_name end |
#service_name ⇒ String
The name of the pickup service (e.g., "Access point"
). Required.
Corresponds to the JSON property serviceName
7962 7963 7964 |
# File 'generated/google/apis/content_v2/classes.rb', line 7962 def service_name @service_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7969 7970 7971 7972 |
# File 'generated/google/apis/content_v2/classes.rb', line 7969 def update!(**args) @carrier_name = args[:carrier_name] if args.key?(:carrier_name) @service_name = args[:service_name] if args.key?(:service_name) end |