Class: Azure::MobileEngagement::Mgmt::V2014_12_01::Models::PollQuestion

Inherits:
PollQuestionLocalization show all
Includes:
MsRestAzure
Defined in:
lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/poll_question.rb

Overview

Model object.

Instance Attribute Summary collapse

Attributes inherited from PollQuestionLocalization

#title

Class Method Summary collapse

Instance Attribute Details

#choicesArray<PollQuestionChoice>

question.

Returns:



29
30
31
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/poll_question.rb', line 29

def choices
  @choices
end

#idInteger

Returns Unique identifier of the question.

Returns:

  • (Integer)

    Unique identifier of the question.



17
18
19
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/poll_question.rb', line 17

def id
  @id
end

#localizationHash{String => PollQuestionLocalization}

be localized using an optional JSON object. The JSON key is a two-character language code as specified by the ISO 639-1 standard. The corresponding value is an object containing the localizable property title.

Returns:



25
26
27
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/poll_question.rb', line 25

def localization
  @localization
end

Class Method Details

.mapperObject

Mapper for PollQuestion class as Ruby Hash. This will be used for serialization/deserialization.



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
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/poll_question.rb', line 36

def self.mapper()
  {
    required: false,
    serialized_name: 'PollQuestion',
    type: {
      name: 'Composite',
      class_name: 'PollQuestion',
      model_properties: {
        title: {
          required: false,
          serialized_name: 'title',
          constraints: {
            MaxLength: 256
          },
          type: {
            name: 'String'
          }
        },
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'Number'
          }
        },
        localization: {
          required: false,
          serialized_name: 'localization',
          type: {
            name: 'Dictionary',
            value: {
                required: false,
                serialized_name: 'PollQuestionLocalizationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'PollQuestionLocalization'
                }
            }
          }
        },
        choices: {
          required: false,
          serialized_name: 'choices',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'PollQuestionChoiceElementType',
                type: {
                  name: 'Composite',
                  class_name: 'PollQuestionChoice'
                }
            }
          }
        }
      }
    }
  }
end