Class: Google::Apis::CloudsearchV1::FieldViolation
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::FieldViolation
- Defined in:
- generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the error.
-
#field ⇒ String
Path of field with violation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FieldViolation
constructor
A new instance of FieldViolation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ FieldViolation
Returns a new instance of FieldViolation
998 999 1000 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the error.
Corresponds to the JSON property description
991 992 993 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 991 def description @description end |
#field ⇒ String
Path of field with violation.
Corresponds to the JSON property field
996 997 998 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 996 def field @field end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1003 1004 1005 1006 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1003 def update!(**args) @description = args[:description] if args.key?(:description) @field = args[:field] if args.key?(:field) end |