Method: PureCloud::PhoneColumn#valid?

Defined in:
lib/purecloudplatformclientv2/models/phone_column.rb

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



70
71
72
73
74
75
76
77
78
79
# File 'lib/purecloudplatformclientv2/models/phone_column.rb', line 70

def valid?
  if @column_name.nil?
    return false
  end

  if @type.nil?
    return false
  end

end