Show / Hide Table of Contents

Class Workspace

A single workspace.

Inheritance
System.Object
Workspace
Implements
Google.Protobuf.IMessage<Workspace>
System.IEquatable<Workspace>
Google.Protobuf.IDeepCloneable<Workspace>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Area120.Tables.V1Alpha1
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class Workspace : IMessage<Workspace>, IEquatable<Workspace>, IDeepCloneable<Workspace>, IBufferMessage, IMessage

Constructors

Workspace()

Declaration
public Workspace()

Workspace(Workspace)

Declaration
public Workspace(Workspace other)
Parameters
Type Name Description
Workspace other

Properties

DisplayName

The human readable title of the workspace.

Declaration
public string DisplayName { get; set; }
Property Value
Type Description
System.String

Name

The resource name of the workspace. Workspace names have the form workspaces/{workspace}.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Tables

The list of tables in the workspace.

Declaration
public RepeatedField<Table> Tables { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Table>

WorkspaceName

WorkspaceName-typed view over the Name resource name property.

Declaration
public WorkspaceName WorkspaceName { get; set; }
Property Value
Type Description
WorkspaceName
Back to top