This file is indexed.

/usr/lib/ruby/vendor_ruby/generated/azure_mgmt_mobile_engagement/models/feedback_by_date_range_parameter.rb is in ruby-azure-mgmt-mobile-engagement 0.8.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 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
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
# encoding: utf-8
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.

module Azure::ARM::MobileEngagement
  module Models
    #
    # Model object.
    # 
    #
    class FeedbackByDateRangeParameter

      include MsRestAzure

      # @return [String]
      attr_accessor :container_url

      # @return [String] A description of the export task.
      attr_accessor :description

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

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

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

      # @return [ExportFormat] The format of the exported data. Possible values
      # include: 'JsonBlob', 'CsvBlob'
      attr_accessor :export_format


      #
      # Mapper for FeedbackByDateRangeParameter class as Ruby Hash.
      # This will be used for serialization/deserialization.
      #
      def self.mapper()
        {
          required: false,
          serialized_name: 'feedbackByDateRangeParameter',
          type: {
            name: 'Composite',
            class_name: 'FeedbackByDateRangeParameter',
            model_properties: {
              container_url: {
                required: true,
                serialized_name: 'containerUrl',
                type: {
                  name: 'String'
                }
              },
              description: {
                required: false,
                serialized_name: 'description',
                type: {
                  name: 'String'
                }
              },
              campaign_type: {
                required: true,
                serialized_name: 'campaignType',
                type: {
                  name: 'Enum',
                  module: 'CampaignType'
                }
              },
              campaign_window_start: {
                required: true,
                serialized_name: 'campaignWindowStart',
                type: {
                  name: 'DateTime'
                }
              },
              campaign_window_end: {
                required: true,
                serialized_name: 'campaignWindowEnd',
                type: {
                  name: 'DateTime'
                }
              },
              export_format: {
                required: true,
                serialized_name: 'exportFormat',
                type: {
                  name: 'Enum',
                  module: 'ExportFormat'
                }
              }
            }
          }
        }
      end
    end
  end
end