ArcGIS Runtime SDK for iOS: AGSEditResult.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSEditResult.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18  //Required for Globals API doc
20 
21 #import <ArcGIS/AGSObject.h>
22 
23 
24 
29 typedef NS_ENUM(NSInteger, AGSEditOperation) {
34 };
35 
45 
46 #pragma mark -
47 #pragma mark initializers
48 
49 #pragma mark -
50 #pragma mark properties
51 
56 @property (nonatomic, assign, readonly) BOOL completedWithErrors;
57 
61 @property (nonatomic, assign, readonly) AGSEditOperation editOperation;
62 
66 @property (nullable, nonatomic, strong, readonly) NSError *error;
67 
71 @property (nonatomic, copy, readonly) NSString *globalID;
72 
76 @property (nonatomic, assign, readonly) long long objectID;
77 
78 #pragma mark -
79 #pragma mark methods
80 
81 @end
82 
83 
Information about the outcome of an attachment edit operation.
Definition: AGSEditResult.h:44
Definition: AGSEditResult.h:30
AGSEditOperation
Definition: AGSEditResult.h:29
Definition: AGSEditResult.h:33
NSError * error
Definition: AGSEditResult.h:66
long long objectID
Definition: AGSEditResult.h:76
BOOL completedWithErrors
Definition: AGSEditResult.h:56
Definition: AGSEditResult.h:31
Definition: AGSObject.h:21
AGSEditOperation editOperation
Definition: AGSEditResult.h:61
Definition: AGSEditResult.h:32
NSString * globalID
Definition: AGSEditResult.h:71