Group
public struct Group : Codable, Equatable
Struct representing Group related values.
-
Value representing the entity id.
Declaration
Swift
public var id: Int
-
The avatar URL of the group.
Declaration
Swift
public var avatarUrl: String
-
The display name of the group.
Declaration
Swift
public var displayName: String
-
The class of the group.
Declaration
Swift
public var groupClass: GroupClass?
-
The description of the group.
Declaration
Swift
public var groupDescription: String
-
The group ID of the group.
Declaration
Swift
public var groupId: String
-
The name of the group.
Declaration
Swift
public var name: String
-
Undocumented
Declaration
Swift
public init(id: Int, avatarUrl: String, displayName: String, groupClass: GroupClass?, groupDescription: String, groupId: String, name: String)
-
Declaration
Swift
public init(from decoder: Decoder) throws