Class: MicrosoftGraph::Models::AndroidMobileAppIdentifier
- Inherits:
-
MobileAppIdentifier
- Object
- MobileAppIdentifier
- MicrosoftGraph::Models::AndroidMobileAppIdentifier
- Includes:
- MicrosoftKiotaAbstractions::Parsable
- Defined in:
- lib/models/android_mobile_app_identifier.rb
Overview
The identifier for an Android app.
Class Method Summary collapse
-
.create_from_discriminator_value(parse_node) ⇒ Object
Creates a new instance of the appropriate class based on discriminator value.
Instance Method Summary collapse
-
#get_field_deserializers ⇒ Object
The deserialization information for the current model.
-
#initialize ⇒ Object
constructor
Instantiates a new androidMobileAppIdentifier and sets the default values.
-
#package_id ⇒ Object
Gets the packageId property value.
-
#package_id=(value) ⇒ Object
Sets the packageId property value.
-
#serialize(writer) ⇒ Object
Serializes information the current object.
Methods inherited from MobileAppIdentifier
#additional_data, #additional_data=, #odata_type, #odata_type=
Constructor Details
#initialize ⇒ Object
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
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_deserializers ⇒ Object
The deserialization information for the current model
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_id ⇒ Object
Gets the packageId property value. The identifier for an app, as specified in the play store.
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.
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
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 |