Class: Google::Apis::ContentV2_1::ReturnaddressCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ReturnaddressCustomBatchResponseEntry
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#batch_id ⇒ Fixnum
The ID of the request entry to which this entry responds.
-
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#return_address ⇒ Google::Apis::ContentV2_1::ReturnAddress
Return address resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReturnaddressCustomBatchResponseEntry
constructor
A new instance of ReturnaddressCustomBatchResponseEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReturnaddressCustomBatchResponseEntry
Returns a new instance of ReturnaddressCustomBatchResponseEntry.
9043 9044 9045 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9043 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch_id ⇒ Fixnum
The ID of the request entry to which this entry responds.
Corresponds to the JSON property batchId
9025 9026 9027 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9025 def batch_id @batch_id end |
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
9030 9031 9032 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9030 def errors @errors end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
returnaddressCustomBatchResponseEntry".
Corresponds to the JSON property kind
9036 9037 9038 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9036 def kind @kind end |
#return_address ⇒ Google::Apis::ContentV2_1::ReturnAddress
Return address resource.
Corresponds to the JSON property returnAddress
9041 9042 9043 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9041 def return_address @return_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9048 9049 9050 9051 9052 9053 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9048 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) @return_address = args[:return_address] if args.key?(:return_address) end |