Class: MicrosoftGraph::Models::AndroidMobileAppIdentifier

Inherits:
MobileAppIdentifier show all
Includes:
MicrosoftKiotaAbstractions::Parsable
Defined in:
lib/models/android_mobile_app_identifier.rb

Overview

The identifier for an Android app.

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from MobileAppIdentifier

#additional_data, #additional_data=, #odata_type, #odata_type=

Constructor Details

#initializeObject

Instantiates a new androidMobileAppIdentifier and sets the default values.



18
19
20
21
# File 'lib/models/android_mobile_app_identifier.rb', line 18

def initialize()
    super
    @odata_type = "#microsoft.graph.androidMobileAppIdentifier"
end

Class Method Details

.create_from_discriminator_value(parse_node) ⇒ Object

Creates a new instance of the appropriate class based on discriminator value

Parameters:

  • parse_node

    The parse node to use to read the discriminator value and create the object

Returns:

  • a android_mobile_app_identifier

Raises:

  • (StandardError)


27
28
29
30
# File 'lib/models/android_mobile_app_identifier.rb', line 27

def self.create_from_discriminator_value(parse_node)
    raise StandardError, 'parse_node cannot be null' if parse_node.nil?
    return AndroidMobileAppIdentifier.new
end

Instance Method Details

#get_field_deserializersObject

The deserialization information for the current model

Returns:

  • a i_dictionary



35
36
37
38
39
# File 'lib/models/android_mobile_app_identifier.rb', line 35

def get_field_deserializers()
    return super.merge({
        "packageId" => lambda {|n| @package_id = n.get_string_value() },
    })
end

#package_idObject

Gets the packageId property value. The identifier for an app, as specified in the play store.

Returns:

  • a string



44
45
46
# File 'lib/models/android_mobile_app_identifier.rb', line 44

def package_id
    return @package_id
end

#package_id=(value) ⇒ Object

Sets the packageId property value. The identifier for an app, as specified in the play store.

Parameters:

  • value

    Value to set for the packageId property.

Returns:

  • a void



52
53
54
# File 'lib/models/android_mobile_app_identifier.rb', line 52

def package_id=(value)
    @package_id = value
end

#serialize(writer) ⇒ Object

Serializes information the current object

Parameters:

  • writer

    Serialization writer to use to serialize this model

Returns:

  • a void

Raises:

  • (StandardError)


60
61
62
63
64
# File 'lib/models/android_mobile_app_identifier.rb', line 60

def serialize(writer)
    raise StandardError, 'writer cannot be null' if writer.nil?
    super
    writer.write_string_value("packageId", @package_id)
end