Class: MicrosoftGraph::Models::OutgoingCallOptions

Inherits:
CallOptions
  • Object
show all
Includes:
MicrosoftKiotaAbstractions::Parsable
Defined in:
lib/models/outgoing_call_options.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CallOptions

#additional_data, #additional_data=, #hide_bot_after_escalation, #hide_bot_after_escalation=, #is_content_sharing_notification_enabled, #is_content_sharing_notification_enabled=, #odata_type, #odata_type=

Constructor Details

#initializeObject

Instantiates a new outgoingCallOptions and sets the default values.



13
14
15
16
# File 'lib/models/outgoing_call_options.rb', line 13

def initialize()
    super
    @odata_type = "#microsoft.graph.outgoingCallOptions"
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 outgoing_call_options

Raises:

  • (StandardError)


22
23
24
25
# File 'lib/models/outgoing_call_options.rb', line 22

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

Instance Method Details

#get_field_deserializersObject

The deserialization information for the current model

Returns:

  • a i_dictionary



30
31
32
33
# File 'lib/models/outgoing_call_options.rb', line 30

def get_field_deserializers()
    return super.merge({
    })
end

#serialize(writer) ⇒ Object

Serializes information the current object

Parameters:

  • writer

    Serialization writer to use to serialize this model

Returns:

  • a void

Raises:

  • (StandardError)


39
40
41
42
# File 'lib/models/outgoing_call_options.rb', line 39

def serialize(writer)
    raise StandardError, 'writer cannot be null' if writer.nil?
    super
end