ARTSummaryClientIdList

Objective-C

@interface ARTSummaryClientIdList : NSObject

Swift

class ARTSummaryClientIdList : NSObject, @unchecked Sendable

Summary with total count and list of client IDs.

  • Total count of items

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger total;

    Swift

    var total: Int { get }
  • Array of client IDs

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSArray<NSString *> *_Nonnull clientIds;

    Swift

    var clientIds: [String] { get }
  • Whether the summary data is clipped (truncated)

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL clipped;

    Swift

    var clipped: Bool { get }
  • Initializes with all properties.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTotal:(NSInteger)total
                                clientIds:(nonnull NSArray<NSString *> *)clientIds
                                  clipped:(BOOL)clipped;

    Swift

    init(total: Int, clientIds: [String], clipped: Bool)

    Parameters

    total

    The total count

    clientIds

    Array of client ID strings

    clipped

    Whether the data is clipped