Class: Google::Apis::CivicinfoV2::DivisionSearchResult

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

Represents a political geographic division that matches the requested query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DivisionSearchResult

Returns a new instance of DivisionSearchResult.



501
502
503
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 501

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

Instance Attribute Details

#aliasesArray<String>

Other Open Civic Data identifiers that refer to the same division -- for example, those that refer to other political divisions whose boundaries are defined to be coterminous with this one. For example, ocd-division/country:us/ state:wy will include an alias of ocd-division/country:us/state:wy/cd:1, since Wyoming has only one Congressional district. Corresponds to the JSON property aliases

Returns:

  • (Array<String>)


489
490
491
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 489

def aliases
  @aliases
end

#nameString

The name of the division. Corresponds to the JSON property name

Returns:

  • (String)


494
495
496
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 494

def name
  @name
end

#ocd_idString

The unique Open Civic Data identifier for this division Corresponds to the JSON property ocdId

Returns:

  • (String)


499
500
501
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 499

def ocd_id
  @ocd_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



506
507
508
509
510
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 506

def update!(**args)
  @aliases = args[:aliases] if args.key?(:aliases)
  @name = args[:name] if args.key?(:name)
  @ocd_id = args[:ocd_id] if args.key?(:ocd_id)
end