]> git.saurik.com Git - apple/security.git/blob - keychain/analytics/C2Metric/SECC2MPCloudKitOperationGroupInfo.h
Security-59306.11.20.tar.gz
[apple/security.git] / keychain / analytics / C2Metric / SECC2MPCloudKitOperationGroupInfo.h
1 // This file was automatically generated by protocompiler
2 // DO NOT EDIT!
3 // Compiled from C2Metric.proto
4
5 #import <Foundation/Foundation.h>
6 #import <ProtocolBuffer/PBCodable.h>
7
8 #ifdef __cplusplus
9 #define SECC2MPCLOUDKITOPERATIONGROUPINFO_FUNCTION extern "C" __attribute__((visibility("hidden")))
10 #else
11 #define SECC2MPCLOUDKITOPERATIONGROUPINFO_FUNCTION extern __attribute__((visibility("hidden")))
12 #endif
13
14 __attribute__((visibility("hidden")))
15 @interface SECC2MPCloudKitOperationGroupInfo : PBCodable <NSCopying>
16 {
17 NSString *_operationGroupId;
18 NSString *_operationGroupName;
19 BOOL _operationGroupTriggered;
20 struct {
21 int operationGroupTriggered:1;
22 } _has;
23 }
24
25
26 @property (nonatomic, readonly) BOOL hasOperationGroupId;
27 @property (nonatomic, retain) NSString *operationGroupId;
28
29 @property (nonatomic, readonly) BOOL hasOperationGroupName;
30 @property (nonatomic, retain) NSString *operationGroupName;
31
32 @property (nonatomic) BOOL hasOperationGroupTriggered;
33 @property (nonatomic) BOOL operationGroupTriggered;
34
35 // Performs a shallow copy into other
36 - (void)copyTo:(SECC2MPCloudKitOperationGroupInfo *)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:(SECC2MPCloudKitOperationGroupInfo *)other;
43
44 SECC2MPCLOUDKITOPERATIONGROUPINFO_FUNCTION BOOL SECC2MPCloudKitOperationGroupInfoReadFrom(__unsafe_unretained SECC2MPCloudKitOperationGroupInfo *self, __unsafe_unretained PBDataReader *reader);
45
46 @end
47