Class: Google::Apis::CivicinfoV2::Office

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Office

Returns a new instance of Office.



740
741
742
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 740

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#division_idString

The OCD ID of the division with which this office is associated. Corresponds to the JSON property divisionId

Returns:

  • (String)


704
705
706
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 704

def division_id
  @division_id
end

#levelsArray<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

Returns:

  • (Array<String>)


713
714
715
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 713

def levels
  @levels
end

#nameString

The human-readable name of the office. Corresponds to the JSON property name

Returns:

  • (String)


718
719
720
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 718

def name
  @name
end

#official_indicesArray<Fixnum>

List of indices in the officials array of people who presently hold this office. Corresponds to the JSON property officialIndices

Returns:

  • (Array<Fixnum>)


724
725
726
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 724

def official_indices
  @official_indices
end

#rolesArray<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

Returns:

  • (Array<String>)


732
733
734
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 732

def roles
  @roles
end

#sourcesArray<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



738
739
740
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 738

def sources
  @sources
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



745
746
747
748
749
750
751
752
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 745

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