Class: Google::Apis::ServiceuserV1::CustomErrorRule
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServiceuserV1::CustomErrorRule
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/serviceuser_v1/classes.rb,
generated/google/apis/serviceuser_v1/representations.rb,
generated/google/apis/serviceuser_v1/representations.rb 
Overview
A custom error rule.
Instance Attribute Summary collapse
- 
  
    
      #is_error_type  ⇒ Boolean 
    
    
      (also: #is_error_type?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Mark this message as possible payload in error response.
 - 
  
    
      #selector  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Selects messages to which this rule applies.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomErrorRule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CustomErrorRule.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomErrorRule
Returns a new instance of CustomErrorRule
      637 638 639  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 637 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#is_error_type ⇒ Boolean Also known as: is_error_type?
Mark this message as possible payload in error response.  Otherwise,
objects of this type will be filtered when they appear in error payload.
Corresponds to the JSON property isErrorType
      628 629 630  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 628 def is_error_type @is_error_type end  | 
  
#selector ⇒ String
Selects messages to which this rule applies.
Refer to selector for syntax details.
Corresponds to the JSON property selector
      635 636 637  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 635 def selector @selector end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      642 643 644 645  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 642 def update!(**args) @is_error_type = args[:is_error_type] if args.key?(:is_error_type) @selector = args[:selector] if args.key?(:selector) end  |