Dropbox .NET SDK

Class GroupLogInfo

Group's logged information.

Inheritance
object
GroupLogInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class GroupLogInfo

Constructors

View Source

GroupLogInfo(string, string, string)

Initializes a new instance of the GroupLogInfo class.

Declaration
public GroupLogInfo(string displayName, string groupId = null, string externalId = null)
Parameters
Type Name Description
string displayName

The name of this group.

string groupId

The unique id of this group.

string externalId

External group ID.

Properties

View Source

DisplayName

The name of this group.

Declaration
public string DisplayName { get; protected set; }
Property Value
Type Description
string
View Source

ExternalId

External group ID.

Declaration
public string ExternalId { get; protected set; }
Property Value
Type Description
string
View Source

GroupId

The unique id of this group.

Declaration
public string GroupId { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK