You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-datastore/v1/2.0.0/com/google/api/services/datastore/v1/model/MutationResult.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,13 @@ public final class MutationResult extends com.google.api.client.json.GenericJson
51
51
@com.google.api.client.util.Key
52
52
privateKeykey;
53
53
54
+
/**
55
+
* The results of applying each PropertyTransform, in the same order of the request.
56
+
* The value may be {@code null}.
57
+
*/
58
+
@com.google.api.client.util.Key
59
+
privatejava.util.List<Value> transformResults;
60
+
54
61
/**
55
62
* The update time of the entity on the server after processing the mutation. If the mutation
56
63
* doesn't change anything on the server, then the timestamp will be the update timestamp of the
@@ -123,6 +130,23 @@ public MutationResult setKey(Key key) {
123
130
returnthis;
124
131
}
125
132
133
+
/**
134
+
* The results of applying each PropertyTransform, in the same order of the request.
0 commit comments