]> git.saurik.com Git - apple/security.git/blob - keychain/analytics/awd/AWDKeychainCKKSRateLimiterOverload.h
Security-58286.51.6.tar.gz
[apple/security.git] / keychain / analytics / awd / AWDKeychainCKKSRateLimiterOverload.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 AWDKEYCHAINCKKSRATELIMITEROVERLOAD_FUNCTION extern "C"
10 #else
11 #define AWDKEYCHAINCKKSRATELIMITEROVERLOAD_FUNCTION extern
12 #endif
13
14 @interface AWDKeychainCKKSRateLimiterOverload : PBCodable <NSCopying>
15 {
16 int64_t _durationMsec;
17 uint64_t _timestamp;
18 NSString *_ratelimitertype;
19 struct {
20 int durationMsec:1;
21 int timestamp:1;
22 } _has;
23 }
24
25
26 @property (nonatomic) BOOL hasTimestamp;
27 @property (nonatomic) uint64_t timestamp;
28
29 @property (nonatomic) BOOL hasDurationMsec;
30 @property (nonatomic) int64_t durationMsec;
31
32 @property (nonatomic, readonly) BOOL hasRatelimitertype;
33 @property (nonatomic, retain) NSString *ratelimitertype;
34
35 // Performs a shallow copy into other
36 - (void)copyTo:(AWDKeychainCKKSRateLimiterOverload *)other;
37
38 // Performs a deep merge from other into self
39 // If set in other, singular values in self are replaced in self
40 // Singular composite values are recursively merged
41 // Repeated values from other are appended to repeated values in self
42 - (void)mergeFrom:(AWDKeychainCKKSRateLimiterOverload *)other;
43
44 AWDKEYCHAINCKKSRATELIMITEROVERLOAD_FUNCTION BOOL AWDKeychainCKKSRateLimiterOverloadReadFrom(__unsafe_unretained AWDKeychainCKKSRateLimiterOverload *self, __unsafe_unretained PBDataReader *reader);
45
46 @end
47