Class: Bandwidth::ApiCreateCallRequest

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb

Overview

ApiCreateCallRequest Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(from = nil, to = nil, answer_url = nil, application_id = nil, call_timeout = nil, username = nil, password = nil, answer_method = nil, disconnect_url = nil, disconnect_method = nil, tag = nil, obfuscated_to = nil, obfuscated_from = nil) ⇒ ApiCreateCallRequest

Returns a new instance of ApiCreateCallRequest.



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 80

def initialize(from = nil,
               to = nil,
               answer_url = nil,
               application_id = nil,
               call_timeout = nil,
               username = nil,
               password = nil,
               answer_method = nil,
               disconnect_url = nil,
               disconnect_method = nil,
               tag = nil,
               obfuscated_to = nil,
               obfuscated_from = nil)
  @from = from
  @to = to
  @call_timeout = call_timeout
  @answer_url = answer_url
  @username = username
  @password = password
  @answer_method = answer_method
  @disconnect_url = disconnect_url
  @disconnect_method = disconnect_method
  @tag = tag
  @application_id = application_id
  @obfuscated_to = obfuscated_to
  @obfuscated_from = obfuscated_from
end

Instance Attribute Details

#answer_methodAnswerMethodEnum

Format is E164

Returns:



35
36
37
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 35

def answer_method
  @answer_method
end

#answer_urlString

Format is E164

Returns:

  • (String)


23
24
25
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 23

def answer_url
  @answer_url
end

#application_idString

Format is E164

Returns:

  • (String)


51
52
53
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 51

def application_id
  @application_id
end

#call_timeoutFloat

Format is E164

Returns:

  • (Float)


19
20
21
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 19

def call_timeout
  @call_timeout
end

#disconnect_methodDisconnectMethodEnum

Format is E164



43
44
45
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 43

def disconnect_method
  @disconnect_method
end

#disconnect_urlString

Format is E164

Returns:

  • (String)


39
40
41
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 39

def disconnect_url
  @disconnect_url
end

#fromString

Format is E164

Returns:

  • (String)


11
12
13
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 11

def from
  @from
end

#obfuscated_fromString

Format is E164

Returns:

  • (String)


59
60
61
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 59

def obfuscated_from
  @obfuscated_from
end

#obfuscated_toString

Format is E164

Returns:

  • (String)


55
56
57
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 55

def obfuscated_to
  @obfuscated_to
end

#passwordString

Format is E164

Returns:

  • (String)


31
32
33
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 31

def password
  @password
end

#tagString

Format is E164

Returns:

  • (String)


47
48
49
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 47

def tag
  @tag
end

#toString

Format is E164

Returns:

  • (String)


15
16
17
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 15

def to
  @to
end

#usernameString

Format is E164

Returns:

  • (String)


27
28
29
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 27

def username
  @username
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 109

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  from = hash['from']
  to = hash['to']
  answer_url = hash['answerUrl']
  application_id = hash['applicationId']
  call_timeout = hash['callTimeout']
  username = hash['username']
  password = hash['password']
  answer_method = hash['answerMethod']
  disconnect_url = hash['disconnectUrl']
  disconnect_method = hash['disconnectMethod']
  tag = hash['tag']
  obfuscated_to = hash['obfuscatedTo']
  obfuscated_from = hash['obfuscatedFrom']

  # Create object from extracted values.
  ApiCreateCallRequest.new(from,
                           to,
                           answer_url,
                           application_id,
                           call_timeout,
                           username,
                           password,
                           answer_method,
                           disconnect_url,
                           disconnect_method,
                           tag,
                           obfuscated_to,
                           obfuscated_from)
end

.namesObject

A mapping from model property names to API property names.



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 62

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['from'] = 'from'
  @_hash['to'] = 'to'
  @_hash['call_timeout'] = 'callTimeout'
  @_hash['answer_url'] = 'answerUrl'
  @_hash['username'] = 'username'
  @_hash['password'] = 'password'
  @_hash['answer_method'] = 'answerMethod'
  @_hash['disconnect_url'] = 'disconnectUrl'
  @_hash['disconnect_method'] = 'disconnectMethod'
  @_hash['tag'] = 'tag'
  @_hash['application_id'] = 'applicationId'
  @_hash['obfuscated_to'] = 'obfuscatedTo'
  @_hash['obfuscated_from'] = 'obfuscatedFrom'
  @_hash
end