Method: OpenapiClient::WebhookRead#valid?
- Defined in:
- lib/openapi_client/models/webhook_read.rb
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
157 158 159 160 161 162 163 164 165 166 |
# File 'lib/openapi_client/models/webhook_read.rb', line 157 def valid? return false if @id.nil? return false if @organization_id.nil? return false if @project_id.nil? return false if @environment_id.nil? return false if @created_at.nil? return false if @updated_at.nil? return false if @url.nil? true end |