Method: OpenapiClient::AuthnMeMemberRead#valid?

Defined in:
lib/openapi_client/models/authn_me_member_read.rb

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



183
184
185
186
187
188
189
190
191
# File 'lib/openapi_client/models/authn_me_member_read.rb', line 183

def valid?
  actor_type_validator = EnumAttributeValidator.new('String', ["member"])
  return false unless actor_type_validator.valid?(@actor_type)
  return false if @id.nil?
  return false if @email.nil?
  return false if @is_onboarding.nil?
  return false if @onboarding_step.nil?
  true
end