class Google::Apis::CoordinateV1::Team

A Coordinate team.

Attributes

id[RW]

Team id, as found in a coordinate team url e.g. coordinate.google.com/ f/xyz where “xyz” is the team id. Corresponds to the JSON property `id` @return [String]

kind[RW]

Identifies this object as a team. Corresponds to the JSON property `kind` @return [String]

name[RW]

Team name Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/coordinate_v1/classes.rb, line 549
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/coordinate_v1/classes.rb, line 554
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
end