class Azure::MobileEngagement::Mgmt::V2014_12_01::Models::FeedbackByDateRangeParameter

Model object.

Attributes

campaign_type[RW]

@return [CampaignType] Possible values include: 'Announcement', 'DataPush', 'NativePush', 'Poll'

campaign_window_end[RW]

@return [DateTime] The RFC3339 date-time end of the period for inclusion of active campaigns.

campaign_window_start[RW]

@return [DateTime] The RFC3339 date-time start of the period for inclusion of active campaigns.

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 FeedbackByDateRangeParameter class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/feedback_by_date_range_parameter.rb, line 43
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'feedbackByDateRangeParameter',
    type: {
      name: 'Composite',
      class_name: 'FeedbackByDateRangeParameter',
      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'
          }
        },
        campaign_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'campaignType',
          type: {
            name: 'Enum',
            module: 'CampaignType'
          }
        },
        campaign_window_start: {
          client_side_validation: true,
          required: true,
          serialized_name: 'campaignWindowStart',
          type: {
            name: 'DateTime'
          }
        },
        campaign_window_end: {
          client_side_validation: true,
          required: true,
          serialized_name: 'campaignWindowEnd',
          type: {
            name: 'DateTime'
          }
        },
        export_format: {
          client_side_validation: true,
          required: true,
          serialized_name: 'exportFormat',
          type: {
            name: 'Enum',
            module: 'ExportFormat'
          }
        }
      }
    }
  }
end