Class: Azure::MobileEngagement::Mgmt::V2014_12_01::Models::DeviceTagsResult

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/device_tags_result.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#invalid_idsArray<String>

have been rejected. Please note that if the request parameters are valid but all the specified devices are rejected, the status code is still ‘200` with a response including all the devices as being rejected.

Returns:

  • (Array<String>)

    A JSON array containing all identifiers that



22
23
24
# File 'lib/2014-12-01/generated/azure_mgmt_mobile_engagement/models/device_tags_result.rb', line 22

def invalid_ids
  @invalid_ids
end

Class Method Details

.mapperObject

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



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

def self.mapper()
  {
    required: false,
    serialized_name: 'DeviceTagsResult',
    type: {
      name: 'Composite',
      class_name: 'DeviceTagsResult',
      model_properties: {
        invalid_ids: {
          required: true,
          serialized_name: 'invalidIds',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end