Class: Google::Apis::ServicemanagementV1::Type
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicemanagementV1::Type
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb 
Overview
A protocol buffer message type.
Instance Attribute Summary collapse
- 
  
    
      #edition  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source edition string, only valid when syntax is SYNTAX_EDITIONS.
 - 
  
    
      #fields  ⇒ Array<Google::Apis::ServicemanagementV1::Field> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of fields.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fully qualified message name.
 - 
  
    
      #oneofs  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of types appearing in
oneofdefinitions in this type. - 
  
    
      #options  ⇒ Array<Google::Apis::ServicemanagementV1::Option> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The protocol buffer options.
 - 
  
    
      #source_context  ⇒ Google::Apis::ServicemanagementV1::SourceContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
SourceContextrepresents information about the source of a protobuf element, like the file in which it is defined. - 
  
    
      #syntax  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source syntax.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Type 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Type.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Type
Returns a new instance of Type.
      4582 4583 4584  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4582 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#edition ⇒ String
The source edition string, only valid when syntax is SYNTAX_EDITIONS.
Corresponds to the JSON property edition
      4549 4550 4551  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4549 def edition @edition end  | 
  
#fields ⇒ Array<Google::Apis::ServicemanagementV1::Field>
The list of fields.
Corresponds to the JSON property fields
      4554 4555 4556  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4554 def fields @fields end  | 
  
#name ⇒ String
The fully qualified message name.
Corresponds to the JSON property name
      4559 4560 4561  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4559 def name @name end  | 
  
#oneofs ⇒ Array<String>
The list of types appearing in oneof definitions in this type.
Corresponds to the JSON property oneofs
      4564 4565 4566  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4564 def oneofs @oneofs end  | 
  
#options ⇒ Array<Google::Apis::ServicemanagementV1::Option>
The protocol buffer options.
Corresponds to the JSON property options
      4569 4570 4571  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4569 def @options end  | 
  
#source_context ⇒ Google::Apis::ServicemanagementV1::SourceContext
SourceContext represents information about the source of a protobuf element,
like the file in which it is defined.
Corresponds to the JSON property sourceContext
      4575 4576 4577  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4575 def source_context @source_context end  | 
  
#syntax ⇒ String
The source syntax.
Corresponds to the JSON property syntax
      4580 4581 4582  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4580 def syntax @syntax end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4587 4588 4589 4590 4591 4592 4593 4594 4595  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4587 def update!(**args) @edition = args[:edition] if args.key?(:edition) @fields = args[:fields] if args.key?(:fields) @name = args[:name] if args.key?(:name) @oneofs = args[:oneofs] if args.key?(:oneofs) @options = args[:options] if args.key?(:options) @source_context = args[:source_context] if args.key?(:source_context) @syntax = args[:syntax] if args.key?(:syntax) end  |