Method: FuseClient::DeleteFinancialConnectionResponse#list_invalid_properties
- Defined in:
- lib/fuse_client/models/delete_financial_connection_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/delete_financial_connection_response.rb', line 86 def list_invalid_properties invalid_properties = Array.new if @financial_connection_id.nil? invalid_properties.push('invalid value for "financial_connection_id", financial_connection_id cannot be nil.') end if @access_token.nil? invalid_properties.push('invalid value for "access_token", access_token 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 |