Class: Bandwidth::ModifyConferenceRequest

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

Overview

ModifyConferenceRequest Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(status = nil, redirect_url = nil, redirect_fallback_url = nil, redirect_method = nil, redirect_fallback_method = nil, username = nil, password = nil, fallback_username = nil, fallback_password = nil) ⇒ ModifyConferenceRequest

Returns a new instance of ModifyConferenceRequest.



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 92

def initialize(status = nil,
               redirect_url = nil,
               redirect_fallback_url = nil,
               redirect_method = nil,
               redirect_fallback_method = nil,
               username = nil,
               password = nil,
               fallback_username = nil,
               fallback_password = nil)
  @status = status unless status == SKIP
  @redirect_url = redirect_url unless redirect_url == SKIP
  @redirect_fallback_url = redirect_fallback_url unless redirect_fallback_url == SKIP
  @redirect_method = redirect_method unless redirect_method == SKIP
  @redirect_fallback_method = redirect_fallback_method unless redirect_fallback_method == SKIP
  @username = username unless username == SKIP
  @password = password unless password == SKIP
  @fallback_username = fallback_username unless fallback_username == SKIP
  @fallback_password = fallback_password unless fallback_password == SKIP
end

Instance Attribute Details

#fallback_passwordString

TODO: Write general description for this method

Returns:

  • (String)


46
47
48
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 46

def fallback_password
  @fallback_password
end

#fallback_usernameString

TODO: Write general description for this method

Returns:

  • (String)


42
43
44
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 42

def fallback_username
  @fallback_username
end

#passwordString

TODO: Write general description for this method

Returns:

  • (String)


38
39
40
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 38

def password
  @password
end

#redirect_fallback_methodRedirectFallbackMethodEnum

TODO: Write general description for this method



30
31
32
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 30

def redirect_fallback_method
  @redirect_fallback_method
end

#redirect_fallback_urlString

TODO: Write general description for this method

Returns:

  • (String)


22
23
24
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 22

def redirect_fallback_url
  @redirect_fallback_url
end

#redirect_methodRedirectMethodEnum

TODO: Write general description for this method

Returns:



26
27
28
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 26

def redirect_method
  @redirect_method
end

#redirect_urlString

TODO: Write general description for this method

Returns:

  • (String)


18
19
20
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 18

def redirect_url
  @redirect_url
end

#statusStatusEnum

TODO: Write general description for this method

Returns:



14
15
16
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 14

def status
  @status
end

#usernameString

TODO: Write general description for this method

Returns:

  • (String)


34
35
36
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 34

def username
  @username
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



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
142
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 113

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  status = hash.key?('status') ? hash['status'] : SKIP
  redirect_url = hash.key?('redirectUrl') ? hash['redirectUrl'] : SKIP
  redirect_fallback_url =
    hash.key?('redirectFallbackUrl') ? hash['redirectFallbackUrl'] : SKIP
  redirect_method =
    hash.key?('redirectMethod') ? hash['redirectMethod'] : SKIP
  redirect_fallback_method =
    hash.key?('redirectFallbackMethod') ? hash['redirectFallbackMethod'] : SKIP
  username = hash.key?('username') ? hash['username'] : SKIP
  password = hash.key?('password') ? hash['password'] : SKIP
  fallback_username =
    hash.key?('fallbackUsername') ? hash['fallbackUsername'] : SKIP
  fallback_password =
    hash.key?('fallbackPassword') ? hash['fallbackPassword'] : SKIP

  # Create object from extracted values.
  ModifyConferenceRequest.new(status,
                              redirect_url,
                              redirect_fallback_url,
                              redirect_method,
                              redirect_fallback_method,
                              username,
                              password,
                              fallback_username,
                              fallback_password)
end

.namesObject

A mapping from model property names to API property names.



49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 49

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['status'] = 'status'
  @_hash['redirect_url'] = 'redirectUrl'
  @_hash['redirect_fallback_url'] = 'redirectFallbackUrl'
  @_hash['redirect_method'] = 'redirectMethod'
  @_hash['redirect_fallback_method'] = 'redirectFallbackMethod'
  @_hash['username'] = 'username'
  @_hash['password'] = 'password'
  @_hash['fallback_username'] = 'fallbackUsername'
  @_hash['fallback_password'] = 'fallbackPassword'
  @_hash
end

Instance Method Details

#nullablesObject

An array for nullable fields



79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb', line 79

def nullables
  %w[
    redirect_url
    redirect_fallback_url
    redirect_method
    redirect_fallback_method
    username
    password
    fallback_username
    fallback_password
  ]
end

#optionalsObject

An array for optional fields



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

def optionals
  %w[
    status
    redirect_url
    redirect_fallback_url
    redirect_method
    redirect_fallback_method
    username
    password
    fallback_username
    fallback_password
  ]
end