Sha256: 3c2b74f779273421471f7091e28f9fe0551ff8f0093c9583cf0c84e22cd31ef8

Contents?: true

Size: 1.62 KB

Versions: 5

Compression:

Stored size: 1.62 KB

Contents

require 'microsoft_kiota_abstractions'
require_relative '../microsoft_graph'
require_relative './models'

module MicrosoftGraph
    module Models
        class ExternalSponsors < MicrosoftGraph::Models::SubjectSet
            include MicrosoftKiotaAbstractions::Parsable
            ## 
            ## Instantiates a new ExternalSponsors and sets the default values.
            ## @return a void
            ## 
            def initialize()
                super
                @odata_type = "#microsoft.graph.externalSponsors"
            end
            ## 
            ## Creates a new instance of the appropriate class based on discriminator value
            ## @param parseNode The parse node to use to read the discriminator value and create the object
            ## @return a external_sponsors
            ## 
            def self.create_from_discriminator_value(parse_node)
                raise StandardError, 'parse_node cannot be null' if parse_node.nil?
                return ExternalSponsors.new
            end
            ## 
            ## The deserialization information for the current model
            ## @return a i_dictionary
            ## 
            def get_field_deserializers()
                return super.merge({
                })
            end
            ## 
            ## Serializes information the current object
            ## @param writer Serialization writer to use to serialize this model
            ## @return a void
            ## 
            def serialize(writer)
                raise StandardError, 'writer cannot be null' if writer.nil?
                super
            end
        end
    end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
microsoft_graph-0.19.0 lib/models/external_sponsors.rb
microsoft_graph-0.18.0 lib/models/external_sponsors.rb
microsoft_graph-0.17.0 lib/models/external_sponsors.rb
microsoft_graph-0.16.0 lib/models/external_sponsors.rb
microsoft_graph-0.15.0 lib/models/external_sponsors.rb