Class CustomStatus
Represents a user's custom status in Google Chat.
This includes a short text message with an optional emoji that a user sets to
give more context about their availability.
Assembly: Google.Apps.Chat.V1.dll
Syntax
public sealed class CustomStatus : IMessage<CustomStatus>, IEquatable<CustomStatus>, IDeepCloneable<CustomStatus>, IBufferMessage, IMessage
Constructors
CustomStatus()
Declaration
CustomStatus(CustomStatus)
Declaration
public CustomStatus(CustomStatus other)
Parameters
Properties
Emoji
Required. The emoji of the custom status. Only Unicode emojis are
supported; custom emojis are not supported.
Declaration
public Emoji Emoji { get; set; }
Property Value
ExpirationCase
Declaration
public CustomStatus.ExpirationOneofCase ExpirationCase { get; }
Property Value
ExpireTime
The timestamp when the custom status expires.
Declaration
public Timestamp ExpireTime { get; set; }
Property Value
Text
Required. The text of the custom status. This will be a string with maximum
length of 64.
Declaration
public string Text { get; set; }
Property Value
Ttl
Input only. The time-to-live duration after which the custom status
expires.
Declaration
public Duration Ttl { get; set; }
Property Value