Method: Hubspot::Crm::Objects::StandardError#valid?
- Defined in:
- lib/hubspot/codegen/crm/objects/models/standard_error.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
156 157 158 159 160 161 162 163 164 |
# File 'lib/hubspot/codegen/crm/objects/models/standard_error.rb', line 156 def valid? return false if @status.nil? return false if @category.nil? return false if @message.nil? return false if @errors.nil? return false if @context.nil? return false if @links.nil? true end |