Class: Google::Apis::CivicinfoV2::Office
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CivicinfoV2::Office
 
- Defined in:
- generated/google/apis/civicinfo_v2/classes.rb,
 generated/google/apis/civicinfo_v2/representations.rb,
 generated/google/apis/civicinfo_v2/representations.rb
Overview
Information about an Office held by one or more Officials.
Instance Attribute Summary collapse
- 
  
    
      #division_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The OCD ID of the division with which this office is associated. 
- 
  
    
      #levels  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The levels of government of which this office is part. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The human-readable name of the office. 
- 
  
    
      #official_indices  ⇒ Array<Fixnum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of indices in the officials array of people who presently hold this office. 
- 
  
    
      #roles  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The roles which this office fulfills. 
- 
  
    
      #sources  ⇒ Array<Google::Apis::CivicinfoV2::Source> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of sources for this office. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Office 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Office. 
- 
  
    
      #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) ⇒ Office
Returns a new instance of Office
| 817 818 819 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 817 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#division_id ⇒ String
The OCD ID of the division with which this office is associated.
Corresponds to the JSON property divisionId
| 781 782 783 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 781 def division_id @division_id end | 
#levels ⇒ Array<String>
The levels of government of which this office is part. There may be more than
one in cases where a jurisdiction effectively acts at two different levels of
government; for example, the mayor of the District of Columbia acts at "
locality" level, but also effectively at both "administrative-area-2" and "
administrative-area-1".
Corresponds to the JSON property levels
| 790 791 792 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 790 def levels @levels end | 
#name ⇒ String
The human-readable name of the office.
Corresponds to the JSON property name
| 795 796 797 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 795 def name @name end | 
#official_indices ⇒ Array<Fixnum>
List of indices in the officials array of people who presently hold this
office.
Corresponds to the JSON property officialIndices
| 801 802 803 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 801 def official_indices @official_indices end | 
#roles ⇒ Array<String>
The roles which this office fulfills. Roles are not meant to be exhaustive, or
to exactly specify the entire set of responsibilities of a given office, but
are meant to be rough categories that are useful for general selection from or
sorting of a list of offices.
Corresponds to the JSON property roles
| 809 810 811 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 809 def roles @roles end | 
#sources ⇒ Array<Google::Apis::CivicinfoV2::Source>
A list of sources for this office. If multiple sources are listed, the data
has been aggregated from those sources.
Corresponds to the JSON property sources
| 815 816 817 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 815 def sources @sources end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 822 823 824 825 826 827 828 829 | # File 'generated/google/apis/civicinfo_v2/classes.rb', line 822 def update!(**args) @division_id = args[:division_id] if args.key?(:division_id) @levels = args[:levels] if args.key?(:levels) @name = args[:name] if args.key?(:name) @official_indices = args[:official_indices] if args.key?(:official_indices) @roles = args[:roles] if args.key?(:roles) @sources = args[:sources] if args.key?(:sources) end |