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) ⇒ ApiCreateCallRequest

Returns a new instance of ApiCreateCallRequest.



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 70

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)
  @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
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

#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.



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 95

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']

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

.namesObject

A mapping from model property names to API property names.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/bandwidth/voice_lib/voice/models/api_create_call_request.rb', line 54

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
end