Method: Coinbase::Client::ContractEventList#list_invalid_properties
- Defined in:
- lib/coinbase/client/models/contract_event_list.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
# File 'lib/coinbase/client/models/contract_event_list.rb', line 95 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new if @data.nil? invalid_properties.push('invalid value for "data", data cannot be nil.') end if @next_page.nil? invalid_properties.push('invalid value for "next_page", next_page cannot be nil.') end if @has_more.nil? invalid_properties.push('invalid value for "has_more", has_more cannot be nil.') end invalid_properties end |