Method: FuseClient::CreateSessionResponse#list_invalid_properties
- Defined in:
- lib/fuse_client/models/create_session_response.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/fuse_client/models/create_session_response.rb', line 86 def list_invalid_properties invalid_properties = Array.new if @expiration.nil? invalid_properties.push('invalid value for "expiration", expiration cannot be nil.') end if @client_secret.nil? invalid_properties.push('invalid value for "client_secret", client_secret cannot be nil.') end if @request_id.nil? invalid_properties.push('invalid value for "request_id", request_id cannot be nil.') end invalid_properties end |