Show / Hide Table of Contents

Class UserOrganization

JSON template for an organization entry.

Inheritance
System.Object
UserOrganization
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class UserOrganization : IDirectResponseSchema

Properties

CostCenter

The cost center of the users department.

Declaration
[JsonProperty("costCenter")]
public virtual string CostCenter { get; set; }
Property Value
Type Description
System.String

CustomType

Custom type.

Declaration
[JsonProperty("customType")]
public virtual string CustomType { get; set; }
Property Value
Type Description
System.String

Department

Department within the organization.

Declaration
[JsonProperty("department")]
public virtual string Department { get; set; }
Property Value
Type Description
System.String

Description

Description of the organization.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

Domain

The domain to which the organization belongs to.

Declaration
[JsonProperty("domain")]
public virtual string Domain { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

FullTimeEquivalent

The full-time equivalent millipercent within the organization (100000 = 100%).

Declaration
[JsonProperty("fullTimeEquivalent")]
public virtual int? FullTimeEquivalent { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Location

Location of the organization. This need not be fully qualified address.

Declaration
[JsonProperty("location")]
public virtual string Location { get; set; }
Property Value
Type Description
System.String

Name

Name of the organization

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Primary

If it user's primary organization.

Declaration
[JsonProperty("primary")]
public virtual bool? Primary { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Symbol

Symbol of the organization.

Declaration
[JsonProperty("symbol")]
public virtual string Symbol { get; set; }
Property Value
Type Description
System.String

Title

Title (designation) of the user in the organization.

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Type

Each entry can have a type which indicates standard types of that entry. For example organization could be of school work etc. In addition to the standard type an entry can have a custom type and can give it any name. Such types should have the CUSTOM value as type and also have a CustomType value.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top