Class: MicrosoftGraph::Models::CallRecordsNetworkInfo

Inherits:
Object
  • Object
show all
Includes:
MicrosoftKiotaAbstractions::AdditionalDataHolder, MicrosoftKiotaAbstractions::Parsable
Defined in:
lib/models/call_records_network_info.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeObject

Instantiates a new callRecordsNetworkInfo and sets the default values.



157
158
159
# File 'lib/models/call_records_network_info.rb', line 157

def initialize()
    @additional_data = Hash.new
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 call_records_network_info

Raises:

  • (StandardError)


165
166
167
168
# File 'lib/models/call_records_network_info.rb', line 165

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

Instance Method Details

#additional_dataObject

Gets the additionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.

Returns:

  • a i_dictionary



97
98
99
# File 'lib/models/call_records_network_info.rb', line 97

def additional_data
    return @additional_data
end

#additional_data=(value) ⇒ Object

Sets the additionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.

Parameters:

  • value

    Value to set for the additionalData property.

Returns:

  • a void



105
106
107
# File 'lib/models/call_records_network_info.rb', line 105

def additional_data=(value)
    @additional_data = value
end

#bandwidth_low_event_ratioObject

Gets the bandwidthLowEventRatio property value. Fraction of the call that the media endpoint detected the available bandwidth or bandwidth policy was low enough to cause poor quality of the audio sent.

Returns:

  • a float



112
113
114
# File 'lib/models/call_records_network_info.rb', line 112

def bandwidth_low_event_ratio
    return @bandwidth_low_event_ratio
end

#bandwidth_low_event_ratio=(value) ⇒ Object

Sets the bandwidthLowEventRatio property value. Fraction of the call that the media endpoint detected the available bandwidth or bandwidth policy was low enough to cause poor quality of the audio sent.

Parameters:

  • value

    Value to set for the bandwidthLowEventRatio property.

Returns:

  • a void



120
121
122
# File 'lib/models/call_records_network_info.rb', line 120

def bandwidth_low_event_ratio=(value)
    @bandwidth_low_event_ratio = value
end

#basic_service_set_identifierObject

Gets the basicServiceSetIdentifier property value. The wireless LAN basic service set identifier of the media endpoint used to connect to the network.

Returns:

  • a string



127
128
129
# File 'lib/models/call_records_network_info.rb', line 127

def basic_service_set_identifier
    return @basic_service_set_identifier
end

#basic_service_set_identifier=(value) ⇒ Object

Sets the basicServiceSetIdentifier property value. The wireless LAN basic service set identifier of the media endpoint used to connect to the network.

Parameters:

  • value

    Value to set for the basicServiceSetIdentifier property.

Returns:

  • a void



135
136
137
# File 'lib/models/call_records_network_info.rb', line 135

def basic_service_set_identifier=(value)
    @basic_service_set_identifier = value
end

#connection_typeObject

Gets the connectionType property value. The connectionType property

Returns:

  • a call_records_network_connection_type



142
143
144
# File 'lib/models/call_records_network_info.rb', line 142

def connection_type
    return @connection_type
end

#connection_type=(value) ⇒ Object

Sets the connectionType property value. The connectionType property

Parameters:

  • value

    Value to set for the connectionType property.

Returns:

  • a void



150
151
152
# File 'lib/models/call_records_network_info.rb', line 150

def connection_type=(value)
    @connection_type = value
end

#delay_event_ratioObject

Gets the delayEventRatio property value. Fraction of the call that the media endpoint detected the network delay was significant enough to impact the ability to have real-time two-way communication.

Returns:

  • a float



173
174
175
# File 'lib/models/call_records_network_info.rb', line 173

def delay_event_ratio
    return @delay_event_ratio
end

#delay_event_ratio=(value) ⇒ Object

Sets the delayEventRatio property value. Fraction of the call that the media endpoint detected the network delay was significant enough to impact the ability to have real-time two-way communication.

Parameters:

  • value

    Value to set for the delayEventRatio property.

Returns:

  • a void



181
182
183
# File 'lib/models/call_records_network_info.rb', line 181

def delay_event_ratio=(value)
    @delay_event_ratio = value
end

#dns_suffixObject

Gets the dnsSuffix property value. DNS suffix associated with the network adapter of the media endpoint.

Returns:

  • a string



188
189
190
# File 'lib/models/call_records_network_info.rb', line 188

def dns_suffix
    return @dns_suffix
end

#dns_suffix=(value) ⇒ Object

Sets the dnsSuffix property value. DNS suffix associated with the network adapter of the media endpoint.

Parameters:

  • value

    Value to set for the dnsSuffix property.

Returns:

  • a void



196
197
198
# File 'lib/models/call_records_network_info.rb', line 196

def dns_suffix=(value)
    @dns_suffix = value
end

#get_field_deserializersObject

The deserialization information for the current model

Returns:

  • a i_dictionary



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/models/call_records_network_info.rb', line 203

def get_field_deserializers()
    return {
        "bandwidthLowEventRatio" => lambda {|n| @bandwidth_low_event_ratio = n.get_float_value() },
        "basicServiceSetIdentifier" => lambda {|n| @basic_service_set_identifier = n.get_string_value() },
        "connectionType" => lambda {|n| @connection_type = n.get_enum_value(MicrosoftGraph::Models::CallRecordsNetworkConnectionType) },
        "delayEventRatio" => lambda {|n| @delay_event_ratio = n.get_float_value() },
        "dnsSuffix" => lambda {|n| @dns_suffix = n.get_string_value() },
        "ipAddress" => lambda {|n| @ip_address = n.get_string_value() },
        "linkSpeed" => lambda {|n| @link_speed = n.get_object_value(lambda {|pn| Int64.create_from_discriminator_value(pn) }) },
        "macAddress" => lambda {|n| @mac_address = n.get_string_value() },
        "networkTransportProtocol" => lambda {|n| @network_transport_protocol = n.get_enum_value(MicrosoftGraph::Models::CallRecordsNetworkTransportProtocol) },
        "@odata.type" => lambda {|n| @odata_type = n.get_string_value() },
        "port" => lambda {|n| @port = n.get_number_value() },
        "receivedQualityEventRatio" => lambda {|n| @received_quality_event_ratio = n.get_float_value() },
        "reflexiveIPAddress" => lambda {|n| @reflexive_i_p_address = n.get_string_value() },
        "relayIPAddress" => lambda {|n| @relay_i_p_address = n.get_string_value() },
        "relayPort" => lambda {|n| @relay_port = n.get_number_value() },
        "sentQualityEventRatio" => lambda {|n| @sent_quality_event_ratio = n.get_float_value() },
        "subnet" => lambda {|n| @subnet = n.get_string_value() },
        "traceRouteHops" => lambda {|n| @trace_route_hops = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::CallRecordsTraceRouteHop.create_from_discriminator_value(pn) }) },
        "wifiBand" => lambda {|n| @wifi_band = n.get_enum_value(MicrosoftGraph::Models::CallRecordsWifiBand) },
        "wifiBatteryCharge" => lambda {|n| @wifi_battery_charge = n.get_number_value() },
        "wifiChannel" => lambda {|n| @wifi_channel = n.get_number_value() },
        "wifiMicrosoftDriver" => lambda {|n| @wifi_microsoft_driver = n.get_string_value() },
        "wifiMicrosoftDriverVersion" => lambda {|n| @wifi_microsoft_driver_version = n.get_string_value() },
        "wifiRadioType" => lambda {|n| @wifi_radio_type = n.get_enum_value(MicrosoftGraph::Models::CallRecordsWifiRadioType) },
        "wifiSignalStrength" => lambda {|n| @wifi_signal_strength = n.get_number_value() },
        "wifiVendorDriver" => lambda {|n| @wifi_vendor_driver = n.get_string_value() },
        "wifiVendorDriverVersion" => lambda {|n| @wifi_vendor_driver_version = n.get_string_value() },
    }
end

#ip_addressObject

Gets the ipAddress property value. IP address of the media endpoint.

Returns:

  • a string



238
239
240
# File 'lib/models/call_records_network_info.rb', line 238

def ip_address
    return @ip_address
end

#ip_address=(value) ⇒ Object

Sets the ipAddress property value. IP address of the media endpoint.

Parameters:

  • value

    Value to set for the ipAddress property.

Returns:

  • a void



246
247
248
# File 'lib/models/call_records_network_info.rb', line 246

def ip_address=(value)
    @ip_address = value
end

Gets the linkSpeed property value. Link speed in bits per second reported by the network adapter used by the media endpoint.

Returns:

  • a int64



253
254
255
# File 'lib/models/call_records_network_info.rb', line 253

def link_speed
    return @link_speed
end

Sets the linkSpeed property value. Link speed in bits per second reported by the network adapter used by the media endpoint.

Parameters:

  • value

    Value to set for the linkSpeed property.

Returns:

  • a void



261
262
263
# File 'lib/models/call_records_network_info.rb', line 261

def link_speed=(value)
    @link_speed = value
end

#mac_addressObject

Gets the macAddress property value. The media access control (MAC) address of the media endpoint’s network device.

Returns:

  • a string



268
269
270
# File 'lib/models/call_records_network_info.rb', line 268

def mac_address
    return @mac_address
end

#mac_address=(value) ⇒ Object

Sets the macAddress property value. The media access control (MAC) address of the media endpoint’s network device.

Parameters:

  • value

    Value to set for the macAddress property.

Returns:

  • a void



276
277
278
# File 'lib/models/call_records_network_info.rb', line 276

def mac_address=(value)
    @mac_address = value
end

#network_transport_protocolObject

Gets the networkTransportProtocol property value. The networkTransportProtocol property

Returns:

  • a call_records_network_transport_protocol



283
284
285
# File 'lib/models/call_records_network_info.rb', line 283

def network_transport_protocol
    return @network_transport_protocol
end

#network_transport_protocol=(value) ⇒ Object

Sets the networkTransportProtocol property value. The networkTransportProtocol property

Parameters:

  • value

    Value to set for the networkTransportProtocol property.

Returns:

  • a void



291
292
293
# File 'lib/models/call_records_network_info.rb', line 291

def network_transport_protocol=(value)
    @network_transport_protocol = value
end

#odata_typeObject

Gets the @odata.type property value. The OdataType property

Returns:

  • a string



298
299
300
# File 'lib/models/call_records_network_info.rb', line 298

def odata_type
    return @odata_type
end

#odata_type=(value) ⇒ Object

Sets the @odata.type property value. The OdataType property

Parameters:

  • value

    Value to set for the @odata.type property.

Returns:

  • a void



306
307
308
# File 'lib/models/call_records_network_info.rb', line 306

def odata_type=(value)
    @odata_type = value
end

#portObject

Gets the port property value. Network port number used by media endpoint.

Returns:

  • a integer



313
314
315
# File 'lib/models/call_records_network_info.rb', line 313

def port
    return @port
end

#port=(value) ⇒ Object

Sets the port property value. Network port number used by media endpoint.

Parameters:

  • value

    Value to set for the port property.

Returns:

  • a void



321
322
323
# File 'lib/models/call_records_network_info.rb', line 321

def port=(value)
    @port = value
end

#received_quality_event_ratioObject

Gets the receivedQualityEventRatio property value. Fraction of the call that the media endpoint detected the network was causing poor quality of the audio received.

Returns:

  • a float



328
329
330
# File 'lib/models/call_records_network_info.rb', line 328

def received_quality_event_ratio
    return @received_quality_event_ratio
end

#received_quality_event_ratio=(value) ⇒ Object

Sets the receivedQualityEventRatio property value. Fraction of the call that the media endpoint detected the network was causing poor quality of the audio received.

Parameters:

  • value

    Value to set for the receivedQualityEventRatio property.

Returns:

  • a void



336
337
338
# File 'lib/models/call_records_network_info.rb', line 336

def received_quality_event_ratio=(value)
    @received_quality_event_ratio = value
end

#reflexive_i_p_addressObject

Gets the reflexiveIPAddress property value. IP address of the media endpoint as seen by the media relay server. This is typically the public internet IP address associated to the endpoint.

Returns:

  • a string



343
344
345
# File 'lib/models/call_records_network_info.rb', line 343

def reflexive_i_p_address
    return @reflexive_i_p_address
end

#reflexive_i_p_address=(value) ⇒ Object

Sets the reflexiveIPAddress property value. IP address of the media endpoint as seen by the media relay server. This is typically the public internet IP address associated to the endpoint.

Parameters:

  • value

    Value to set for the reflexiveIPAddress property.

Returns:

  • a void



351
352
353
# File 'lib/models/call_records_network_info.rb', line 351

def reflexive_i_p_address=(value)
    @reflexive_i_p_address = value
end

#relay_i_p_addressObject

Gets the relayIPAddress property value. IP address of the media relay server allocated by the media endpoint.

Returns:

  • a string



358
359
360
# File 'lib/models/call_records_network_info.rb', line 358

def relay_i_p_address
    return @relay_i_p_address
end

#relay_i_p_address=(value) ⇒ Object

Sets the relayIPAddress property value. IP address of the media relay server allocated by the media endpoint.

Parameters:

  • value

    Value to set for the relayIPAddress property.

Returns:

  • a void



366
367
368
# File 'lib/models/call_records_network_info.rb', line 366

def relay_i_p_address=(value)
    @relay_i_p_address = value
end

#relay_portObject

Gets the relayPort property value. Network port number allocated on the media relay server by the media endpoint.

Returns:

  • a integer



373
374
375
# File 'lib/models/call_records_network_info.rb', line 373

def relay_port
    return @relay_port
end

#relay_port=(value) ⇒ Object

Sets the relayPort property value. Network port number allocated on the media relay server by the media endpoint.

Parameters:

  • value

    Value to set for the relayPort property.

Returns:

  • a void



381
382
383
# File 'lib/models/call_records_network_info.rb', line 381

def relay_port=(value)
    @relay_port = value
end

#sent_quality_event_ratioObject

Gets the sentQualityEventRatio property value. Fraction of the call that the media endpoint detected the network was causing poor quality of the audio sent.

Returns:

  • a float



388
389
390
# File 'lib/models/call_records_network_info.rb', line 388

def sent_quality_event_ratio
    return @sent_quality_event_ratio
end

#sent_quality_event_ratio=(value) ⇒ Object

Sets the sentQualityEventRatio property value. Fraction of the call that the media endpoint detected the network was causing poor quality of the audio sent.

Parameters:

  • value

    Value to set for the sentQualityEventRatio property.

Returns:

  • a void



396
397
398
# File 'lib/models/call_records_network_info.rb', line 396

def sent_quality_event_ratio=(value)
    @sent_quality_event_ratio = 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)


404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
# File 'lib/models/call_records_network_info.rb', line 404

def serialize(writer)
    raise StandardError, 'writer cannot be null' if writer.nil?
    writer.write_float_value("bandwidthLowEventRatio", @bandwidth_low_event_ratio)
    writer.write_string_value("basicServiceSetIdentifier", @basic_service_set_identifier)
    writer.write_enum_value("connectionType", @connection_type)
    writer.write_float_value("delayEventRatio", @delay_event_ratio)
    writer.write_string_value("dnsSuffix", @dns_suffix)
    writer.write_string_value("ipAddress", @ip_address)
    writer.write_object_value("linkSpeed", @link_speed)
    writer.write_string_value("macAddress", @mac_address)
    writer.write_enum_value("networkTransportProtocol", @network_transport_protocol)
    writer.write_string_value("@odata.type", @odata_type)
    writer.write_number_value("port", @port)
    writer.write_float_value("receivedQualityEventRatio", @received_quality_event_ratio)
    writer.write_string_value("reflexiveIPAddress", @reflexive_i_p_address)
    writer.write_string_value("relayIPAddress", @relay_i_p_address)
    writer.write_number_value("relayPort", @relay_port)
    writer.write_float_value("sentQualityEventRatio", @sent_quality_event_ratio)
    writer.write_string_value("subnet", @subnet)
    writer.write_collection_of_object_values("traceRouteHops", @trace_route_hops)
    writer.write_enum_value("wifiBand", @wifi_band)
    writer.write_number_value("wifiBatteryCharge", @wifi_battery_charge)
    writer.write_number_value("wifiChannel", @wifi_channel)
    writer.write_string_value("wifiMicrosoftDriver", @wifi_microsoft_driver)
    writer.write_string_value("wifiMicrosoftDriverVersion", @wifi_microsoft_driver_version)
    writer.write_enum_value("wifiRadioType", @wifi_radio_type)
    writer.write_number_value("wifiSignalStrength", @wifi_signal_strength)
    writer.write_string_value("wifiVendorDriver", @wifi_vendor_driver)
    writer.write_string_value("wifiVendorDriverVersion", @wifi_vendor_driver_version)
    writer.write_additional_data(@additional_data)
end

#subnetObject

Gets the subnet property value. Subnet used for media stream by the media endpoint.

Returns:

  • a string



439
440
441
# File 'lib/models/call_records_network_info.rb', line 439

def subnet
    return @subnet
end

#subnet=(value) ⇒ Object

Sets the subnet property value. Subnet used for media stream by the media endpoint.

Parameters:

  • value

    Value to set for the subnet property.

Returns:

  • a void



447
448
449
# File 'lib/models/call_records_network_info.rb', line 447

def subnet=(value)
    @subnet = value
end

#trace_route_hopsObject

Gets the traceRouteHops property value. List of network trace route hops collected for this media stream.*

Returns:

  • a call_records_trace_route_hop



454
455
456
# File 'lib/models/call_records_network_info.rb', line 454

def trace_route_hops
    return @trace_route_hops
end

#trace_route_hops=(value) ⇒ Object

Sets the traceRouteHops property value. List of network trace route hops collected for this media stream.*

Parameters:

  • value

    Value to set for the traceRouteHops property.

Returns:

  • a void



462
463
464
# File 'lib/models/call_records_network_info.rb', line 462

def trace_route_hops=(value)
    @trace_route_hops = value
end

#wifi_bandObject

Gets the wifiBand property value. The wifiBand property

Returns:

  • a call_records_wifi_band



469
470
471
# File 'lib/models/call_records_network_info.rb', line 469

def wifi_band
    return @wifi_band
end

#wifi_band=(value) ⇒ Object

Sets the wifiBand property value. The wifiBand property

Parameters:

  • value

    Value to set for the wifiBand property.

Returns:

  • a void



477
478
479
# File 'lib/models/call_records_network_info.rb', line 477

def wifi_band=(value)
    @wifi_band = value
end

#wifi_battery_chargeObject

Gets the wifiBatteryCharge property value. Estimated remaining battery charge in percentage reported by the media endpoint.

Returns:

  • a integer



484
485
486
# File 'lib/models/call_records_network_info.rb', line 484

def wifi_battery_charge
    return @wifi_battery_charge
end

#wifi_battery_charge=(value) ⇒ Object

Sets the wifiBatteryCharge property value. Estimated remaining battery charge in percentage reported by the media endpoint.

Parameters:

  • value

    Value to set for the wifiBatteryCharge property.

Returns:

  • a void



492
493
494
# File 'lib/models/call_records_network_info.rb', line 492

def wifi_battery_charge=(value)
    @wifi_battery_charge = value
end

#wifi_channelObject

Gets the wifiChannel property value. WiFi channel used by the media endpoint.

Returns:

  • a integer



499
500
501
# File 'lib/models/call_records_network_info.rb', line 499

def wifi_channel
    return @wifi_channel
end

#wifi_channel=(value) ⇒ Object

Sets the wifiChannel property value. WiFi channel used by the media endpoint.

Parameters:

  • value

    Value to set for the wifiChannel property.

Returns:

  • a void



507
508
509
# File 'lib/models/call_records_network_info.rb', line 507

def wifi_channel=(value)
    @wifi_channel = value
end

#wifi_microsoft_driverObject

Gets the wifiMicrosoftDriver property value. Name of the Microsoft WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.

Returns:

  • a string



514
515
516
# File 'lib/models/call_records_network_info.rb', line 514

def wifi_microsoft_driver
    return @wifi_microsoft_driver
end

#wifi_microsoft_driver=(value) ⇒ Object

Sets the wifiMicrosoftDriver property value. Name of the Microsoft WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.

Parameters:

  • value

    Value to set for the wifiMicrosoftDriver property.

Returns:

  • a void



522
523
524
# File 'lib/models/call_records_network_info.rb', line 522

def wifi_microsoft_driver=(value)
    @wifi_microsoft_driver = value
end

#wifi_microsoft_driver_versionObject

Gets the wifiMicrosoftDriverVersion property value. Version of the Microsoft WiFi driver used by the media endpoint.

Returns:

  • a string



529
530
531
# File 'lib/models/call_records_network_info.rb', line 529

def wifi_microsoft_driver_version
    return @wifi_microsoft_driver_version
end

#wifi_microsoft_driver_version=(value) ⇒ Object

Sets the wifiMicrosoftDriverVersion property value. Version of the Microsoft WiFi driver used by the media endpoint.

Parameters:

  • value

    Value to set for the wifiMicrosoftDriverVersion property.

Returns:

  • a void



537
538
539
# File 'lib/models/call_records_network_info.rb', line 537

def wifi_microsoft_driver_version=(value)
    @wifi_microsoft_driver_version = value
end

#wifi_radio_typeObject

Gets the wifiRadioType property value. The wifiRadioType property

Returns:

  • a call_records_wifi_radio_type



544
545
546
# File 'lib/models/call_records_network_info.rb', line 544

def wifi_radio_type
    return @wifi_radio_type
end

#wifi_radio_type=(value) ⇒ Object

Sets the wifiRadioType property value. The wifiRadioType property

Parameters:

  • value

    Value to set for the wifiRadioType property.

Returns:

  • a void



552
553
554
# File 'lib/models/call_records_network_info.rb', line 552

def wifi_radio_type=(value)
    @wifi_radio_type = value
end

#wifi_signal_strengthObject

Gets the wifiSignalStrength property value. WiFi signal strength in percentage reported by the media endpoint.

Returns:

  • a integer



559
560
561
# File 'lib/models/call_records_network_info.rb', line 559

def wifi_signal_strength
    return @wifi_signal_strength
end

#wifi_signal_strength=(value) ⇒ Object

Sets the wifiSignalStrength property value. WiFi signal strength in percentage reported by the media endpoint.

Parameters:

  • value

    Value to set for the wifiSignalStrength property.

Returns:

  • a void



567
568
569
# File 'lib/models/call_records_network_info.rb', line 567

def wifi_signal_strength=(value)
    @wifi_signal_strength = value
end

#wifi_vendor_driverObject

Gets the wifiVendorDriver property value. Name of the WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.

Returns:

  • a string



574
575
576
# File 'lib/models/call_records_network_info.rb', line 574

def wifi_vendor_driver
    return @wifi_vendor_driver
end

#wifi_vendor_driver=(value) ⇒ Object

Sets the wifiVendorDriver property value. Name of the WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.

Parameters:

  • value

    Value to set for the wifiVendorDriver property.

Returns:

  • a void



582
583
584
# File 'lib/models/call_records_network_info.rb', line 582

def wifi_vendor_driver=(value)
    @wifi_vendor_driver = value
end

#wifi_vendor_driver_versionObject

Gets the wifiVendorDriverVersion property value. Version of the WiFi driver used by the media endpoint.

Returns:

  • a string



589
590
591
# File 'lib/models/call_records_network_info.rb', line 589

def wifi_vendor_driver_version
    return @wifi_vendor_driver_version
end

#wifi_vendor_driver_version=(value) ⇒ Object

Sets the wifiVendorDriverVersion property value. Version of the WiFi driver used by the media endpoint.

Parameters:

  • value

    Value to set for the wifiVendorDriverVersion property.

Returns:

  • a void



597
598
599
# File 'lib/models/call_records_network_info.rb', line 597

def wifi_vendor_driver_version=(value)
    @wifi_vendor_driver_version = value
end