Class: Google::Apis::WalletobjectsV1::LatLongPoint

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/walletobjects_v1/classes.rb,
lib/google/apis/walletobjects_v1/representations.rb,
lib/google/apis/walletobjects_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LatLongPoint

Returns a new instance of LatLongPoint.



4497
4498
4499
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4497

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

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " walletobjects#latLongPoint". Corresponds to the JSON property kind

Returns:

  • (String)


4483
4484
4485
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4483

def kind
  @kind
end

#latitudeFloat

The latitude specified as any value in the range of -90.0 through +90.0, both inclusive. Values outside these bounds will be rejected. Corresponds to the JSON property latitude

Returns:

  • (Float)


4489
4490
4491
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4489

def latitude
  @latitude
end

#longitudeFloat

The longitude specified in the range -180.0 through +180.0, both inclusive. Values outside these bounds will be rejected. Corresponds to the JSON property longitude

Returns:

  • (Float)


4495
4496
4497
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4495

def longitude
  @longitude
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4502
4503
4504
4505
4506
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 4502

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @latitude = args[:latitude] if args.key?(:latitude)
  @longitude = args[:longitude] if args.key?(:longitude)
end