Class: Azure::DataBox::Mgmt::V2018_01_01::Models::UpdateJobDetails
- Inherits:
-
Object
- Object
- Azure::DataBox::Mgmt::V2018_01_01::Models::UpdateJobDetails
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-01-01/generated/azure_mgmt_databox/models/update_job_details.rb
Overview
Job details for update.
Instance Attribute Summary collapse
-
#contact_details ⇒ ContactDetails
Contact details for notification and shipping.
-
#shipping_address ⇒ ShippingAddress
Shipping address of the customer.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for UpdateJobDetails class as Ruby Hash.
Instance Attribute Details
#contact_details ⇒ ContactDetails
Returns Contact details for notification and shipping.
16 17 18 |
# File 'lib/2018-01-01/generated/azure_mgmt_databox/models/update_job_details.rb', line 16 def contact_details @contact_details end |
#shipping_address ⇒ ShippingAddress
Returns Shipping address of the customer.
19 20 21 |
# File 'lib/2018-01-01/generated/azure_mgmt_databox/models/update_job_details.rb', line 19 def shipping_address @shipping_address end |
Class Method Details
.mapper ⇒ Object
Mapper for UpdateJobDetails class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/2018-01-01/generated/azure_mgmt_databox/models/update_job_details.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UpdateJobDetails', type: { name: 'Composite', class_name: 'UpdateJobDetails', model_properties: { contact_details: { client_side_validation: true, required: false, serialized_name: 'contactDetails', type: { name: 'Composite', class_name: 'ContactDetails' } }, shipping_address: { client_side_validation: true, required: false, serialized_name: 'shippingAddress', type: { name: 'Composite', class_name: 'ShippingAddress' } } } } } end |