Class: Azure::MobileEngagement::Mgmt::V2014_12_01::Models::DeviceTagsParameters

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

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#delete_on_nullBoolean

will be deleted. Default value: false .

Returns:

  • (Boolean)

    If this parameter is ‘true`, tags with a null value



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

def delete_on_null
  @delete_on_null
end

#tagsHash{String => Hash{String => String}}

describing the set of tags to record for a set of users. Each key is a device/user identifier, each value is itself a key/value set: the tags to set for the specified device/user identifier.

Returns:

  • (Hash{String => Hash{String => String}})

    A JSON object



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

def tags
  @tags
end

Class Method Details

.mapperObject

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



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

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DeviceTagsParameters',
    type: {
      name: 'Composite',
      class_name: 'DeviceTagsParameters',
      model_properties: {
        tags: {
          client_side_validation: true,
          required: true,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'HashElementType',
                type: {
                  name: 'Dictionary',
                  value: {
                      client_side_validation: true,
                      required: false,
                      serialized_name: 'StringElementType',
                      type: {
                        name: 'String'
                      }
                  }
                }
            }
          }
        },
        delete_on_null: {
          client_side_validation: true,
          required: false,
          serialized_name: 'deleteOnNull',
          default_value: false,
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end