Class: Google::Apis::CivicinfoV2::Source

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

Contains information about the data source for the element containing it.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Source

Returns a new instance of Source.



1469
1470
1471
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1469

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

Instance Attribute Details

#nameString

The name of the data source. Corresponds to the JSON property name

Returns:

  • (String)


1461
1462
1463
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1461

def name
  @name
end

#officialBoolean Also known as: official?

Whether this data comes from an official government source. Corresponds to the JSON property official

Returns:

  • (Boolean)


1466
1467
1468
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1466

def official
  @official
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1474
1475
1476
1477
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 1474

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