class Google::Apis::Area120tablesV1alpha1::Workspace

A single workspace.

Attributes

create_time[RW]

Time when the workspace was created. Corresponds to the JSON property `createTime` @return [String]

display_name[RW]

The human readable title of the workspace. Corresponds to the JSON property `displayName` @return [String]

name[RW]

The resource name of the workspace. Workspace names have the form `workspaces/` workspace“. Corresponds to the JSON property `name` @return [String]

tables[RW]

The list of tables in the workspace. Corresponds to the JSON property `tables` @return [Array<Google::Apis::Area120tablesV1alpha1::Table>]

update_time[RW]

Time when the workspace was last updated. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/area120tables_v1alpha1/classes.rb, line 567
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @tables = args[:tables] if args.key?(:tables)
  @update_time = args[:update_time] if args.key?(:update_time)
end