Class: Google::Apis::ServicenetworkingV1::ValidateConsumerConfigResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1::ValidateConsumerConfigResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicenetworking_v1/classes.rb,
generated/google/apis/servicenetworking_v1/representations.rb,
generated/google/apis/servicenetworking_v1/representations.rb
Instance Attribute Summary collapse
-
#is_valid ⇒ Boolean
(also: #is_valid?)
Corresponds to the JSON property
isValid
. -
#validation_error ⇒ String
Corresponds to the JSON property
validationError
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidateConsumerConfigResponse
constructor
A new instance of ValidateConsumerConfigResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ValidateConsumerConfigResponse
Returns a new instance of ValidateConsumerConfigResponse.
3940 3941 3942 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3940 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_valid ⇒ Boolean Also known as: is_valid?
Corresponds to the JSON property isValid
3932 3933 3934 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3932 def is_valid @is_valid end |
#validation_error ⇒ String
Corresponds to the JSON property validationError
3938 3939 3940 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3938 def validation_error @validation_error end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3945 3946 3947 3948 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3945 def update!(**args) @is_valid = args[:is_valid] if args.key?(:is_valid) @validation_error = args[:validation_error] if args.key?(:validation_error) end |