]> git.saurik.com Git - apple/security.git/blob - keychain/analytics/awd/AWDKeychainCKKSRateLimiterTopWriters.h
Security-58286.20.16.tar.gz
[apple/security.git] / keychain / analytics / awd / AWDKeychainCKKSRateLimiterTopWriters.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 AWDKEYCHAINCKKSRATELIMITERTOPWRITERS_FUNCTION extern "C"
10 #else
11 #define AWDKEYCHAINCKKSRATELIMITERTOPWRITERS_FUNCTION extern
12 #endif
13
14 @interface AWDKeychainCKKSRateLimiterTopWriters : PBCodable <NSCopying>
15 {
16 uint64_t _timestamp;
17 NSString *_ratelimitertype;
18 NSMutableArray<NSString *> *_writers;
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, retain) NSMutableArray<NSString *> *writers;
29 - (void)clearWriters;
30 - (void)addWriter:(NSString *)i;
31 - (NSUInteger)writersCount;
32 - (NSString *)writerAtIndex:(NSUInteger)idx;
33 + (Class)writerType;
34
35 @property (nonatomic, readonly) BOOL hasRatelimitertype;
36 @property (nonatomic, retain) NSString *ratelimitertype;
37
38 // Performs a shallow copy into other
39 - (void)copyTo:(AWDKeychainCKKSRateLimiterTopWriters *)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:(AWDKeychainCKKSRateLimiterTopWriters *)other;
46
47 AWDKEYCHAINCKKSRATELIMITERTOPWRITERS_FUNCTION BOOL AWDKeychainCKKSRateLimiterTopWritersReadFrom(__unsafe_unretained AWDKeychainCKKSRateLimiterTopWriters *self, __unsafe_unretained PBDataReader *reader);
48
49 @end
50