Class GroupUpdateMessage
A message for updating a group.
Namespace: TehGM.Wolfringo.Messages
Assembly: Wolfringo.Core.dll
Syntax
[ResponseType(typeof(GroupEditResponse))]
public class GroupUpdateMessage : IGroupEditMessage, IWolfMessage
Remarks
Uses GroupEditResponse as response type.
Constructors
| Improve this Doc View SourceGroupUpdateMessage()
Creates a message instance.
Declaration
[JsonConstructor]
protected GroupUpdateMessage()
Properties
| Improve this Doc View SourceDescription
Group's short description.
Declaration
[JsonProperty("description")]
public string Description { get; protected set; }
Property Value
Type | Description |
---|---|
String |
EntryReputationLevel
Group's entry reputation level.
Declaration
[JsonProperty("entryLevel")]
public int? EntryReputationLevel { get; protected set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
EventName
Message event name.
Declaration
[JsonIgnore]
public string EventName { get; }
Property Value
Type | Description |
---|---|
String |
Remarks
Equals to GroupProfileUpdate.
ID
ID of the group.
Declaration
[JsonProperty("id")]
public uint ID { get; protected set; }
Property Value
Type | Description |
---|---|
UInt32 |
IsDiscoverable
Is group publicly discoverable?
Declaration
[JsonProperty("discoverable")]
public bool IsDiscoverable { get; protected set; }
Property Value
Type | Description |
---|---|
Boolean |
IsExtendedAdminEnabled
Is extended admin privilege enabled in this group?
Declaration
[JsonProperty("advancedAdmin")]
public bool IsExtendedAdminEnabled { get; protected set; }
Property Value
Type | Description |
---|---|
Boolean |
IsPeekable
Is message history visible even if user is not in the group?
Declaration
[JsonProperty("peekable")]
public bool IsPeekable { get; protected set; }
Property Value
Type | Description |
---|---|
Boolean |
Language
Language of the group.
Declaration
[JsonProperty("language")]
public WolfLanguage? Language { get; protected set; }
Property Value
Type | Description |
---|---|
Nullable<WolfLanguage> |
LongDescription
Long description of the group.
Declaration
[JsonProperty("longDescription")]
public string LongDescription { get; protected set; }
Property Value
Type | Description |
---|---|
String |