]> git.saurik.com Git - apple/security.git/blob - keychain/analytics/awd/AWDKeychainCKKSRateLimiterAggregatedScores.h
Security-58286.20.16.tar.gz
[apple/security.git] / keychain / analytics / awd / AWDKeychainCKKSRateLimiterAggregatedScores.h
1 // This file was automatically generated by protocompiler
2 // DO NOT EDIT!
3 // Compiled from stdin
4
5 #import <Foundation/Foundation.h>
6 #import <ProtocolBuffer/PBCodable.h>
7
8 #ifdef __cplusplus
9 #define AWDKEYCHAINCKKSRATELIMITERAGGREGATEDSCORES_FUNCTION extern "C"
10 #else
11 #define AWDKEYCHAINCKKSRATELIMITERAGGREGATEDSCORES_FUNCTION extern
12 #endif
13
14 @interface AWDKeychainCKKSRateLimiterAggregatedScores : PBCodable <NSCopying>
15 {
16 PBRepeatedUInt32 _datas;
17 uint64_t _timestamp;
18 NSString *_ratelimitertype;
19 struct {
20 int timestamp:1;
21 } _has;
22 }
23
24
25 @property (nonatomic) BOOL hasTimestamp;
26 @property (nonatomic) uint64_t timestamp;
27
28 @property (nonatomic, readonly) NSUInteger datasCount;
29 @property (nonatomic, readonly) uint32_t *datas;
30 - (void)clearDatas;
31 - (void)addData:(uint32_t)i;
32 - (uint32_t)dataAtIndex:(NSUInteger)idx;
33 - (void)setDatas:(uint32_t *)list count:(NSUInteger)count;
34
35 @property (nonatomic, readonly) BOOL hasRatelimitertype;
36 @property (nonatomic, retain) NSString *ratelimitertype;
37
38 // Performs a shallow copy into other
39 - (void)copyTo:(AWDKeychainCKKSRateLimiterAggregatedScores *)other;
40
41 // Performs a deep merge from other into self
42 // If set in other, singular values in self are replaced in self
43 // Singular composite values are recursively merged
44 // Repeated values from other are appended to repeated values in self
45 - (void)mergeFrom:(AWDKeychainCKKSRateLimiterAggregatedScores *)other;
46
47 AWDKEYCHAINCKKSRATELIMITERAGGREGATEDSCORES_FUNCTION BOOL AWDKeychainCKKSRateLimiterAggregatedScoresReadFrom(__unsafe_unretained AWDKeychainCKKSRateLimiterAggregatedScores *self, __unsafe_unretained PBDataReader *reader);
48
49 @end
50