class Azure::MobileEngagement::Mgmt::V2014_12_01::Models::ExportTaskParameter
Model object.
Attributes
container_url[RW]
@return [String]
description[RW]
@return [String] A description of the export task.
export_format[RW]
@return [ExportFormat] The format of the exported data. Possible values include: 'JsonBlob', 'CsvBlob'
Private Class Methods
mapper()
click to toggle source
Mapper for ExportTaskParameter
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/export_task_parameter.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'exportTaskParameter', type: { name: 'Composite', class_name: 'ExportTaskParameter', model_properties: { container_url: { client_side_validation: true, required: true, serialized_name: 'containerUrl', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } }, export_format: { client_side_validation: true, required: true, serialized_name: 'exportFormat', type: { name: 'Enum', module: 'ExportFormat' } } } } } end