MembersChangeLogsResult

@objc
open class MembersChangeLogsResult : NSObject

Undocumented

  • Indicates List of changed members.

    Declaration

    Swift

    @objc
    public let userList: [User]
  • Remaining time in milliseconds until the next request can be made.

    If this value is non-null, it means the next request should be made after this time interval or the result will be empty.

    Declaration

    Swift

    @objc
    public let remainingTimeUntilNextRequest: Int64
  • Indicates whether there are more changelogs to be retrieved.

    Declaration

    Swift

    @objc
    public let hasMore: Bool
  • Used to retrieve the token of the last changelog from previous results.

    Declaration

    Swift

    @objc
    public let token: String?
  • Undocumented

    Declaration

    Swift

    public init(
        userList: [User],
        remainingTimeUntilNextRequest: Int64,
        hasMore: Bool,
        token: String?
    )