Class: Telnyx::Models::Calls::ActionStartStreamingParams::CustomParameter
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::Calls::ActionStartStreamingParams::CustomParameter
- Defined in:
- lib/telnyx/models/calls/action_start_streaming_params.rb
Instance Attribute Summary collapse
-
#name ⇒ String?
The name of the custom parameter.
-
#value ⇒ String?
The value of the custom parameter.
Instance Method Summary collapse
-
#initialize(call_control_id:, client_state: nil, command_id: nil, custom_parameters: nil, dialogflow_config: nil, enable_dialogflow: nil, stream_auth_token: nil, stream_bidirectional_codec: nil, stream_bidirectional_mode: nil, stream_bidirectional_sampling_rate: nil, stream_bidirectional_target_legs: nil, stream_codec: nil, stream_track: nil, stream_url: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see Telnyx::Models::Calls::ActionStartStreamingParams for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(call_control_id:, client_state: nil, command_id: nil, custom_parameters: nil, dialogflow_config: nil, enable_dialogflow: nil, stream_auth_token: nil, stream_bidirectional_codec: nil, stream_bidirectional_mode: nil, stream_bidirectional_sampling_rate: nil, stream_bidirectional_target_legs: nil, stream_codec: nil, stream_track: nil, stream_url: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Telnyx::Models::Calls::ActionStartStreamingParams for more details.
stream_
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/telnyx/models/calls/action_start_streaming_params.rb', line 134 class CustomParameter < Telnyx::Internal::Type::BaseModel # @!attribute name # The name of the custom parameter. # # @return [String, nil] optional :name, String # @!attribute value # The value of the custom parameter. # # @return [String, nil] optional :value, String # @!method initialize(name: nil, value: nil) # @param name [String] The name of the custom parameter. # # @param value [String] The value of the custom parameter. end |
Instance Attribute Details
#name ⇒ String?
The name of the custom parameter.
139 |
# File 'lib/telnyx/models/calls/action_start_streaming_params.rb', line 139 optional :name, String |
#value ⇒ String?
The value of the custom parameter.
145 |
# File 'lib/telnyx/models/calls/action_start_streaming_params.rb', line 145 optional :value, String |