BasicGroupFullInfo

public struct BasicGroupFullInfo : Codable, Equatable, FunctionResult

Contains full information about a basic group

  • Group description

    Declaration

    Swift

    public let description: String
  • User identifier of the creator of the group; 0 if unknown

    Declaration

    Swift

    public let creatorUserId: Int32
  • Group members

    Declaration

    Swift

    public let members: [ChatMember]
  • Invite link for this group; available only after it has been generated at least once and only for the group creator

    Declaration

    Swift

    public let inviteLink: String
  • Contains full information about a basic group

    Declaration

    Swift

    public init(description: String, creatorUserId: Int32, members: [ChatMember], inviteLink: String)

    Parameters

    description

    Group description

    creatorUserId

    User identifier of the creator of the group; 0 if unknown

    members

    Group members

    inviteLink

    Invite link for this group; available only after it has been generated at least once and only for the group creator