Class SetItemResponse
Newly generated writeLock for the item.
Inherited Members
Namespace: Unity.Services.Apis.Admin.CloudSave
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "SetItemResponse")]
[Preserve]
public class SetItemResponse
Constructors
SetItemResponse(string)
Initializes a new instance of the Set
Declaration
[Preserve]
public SetItemResponse(string writeLock = null)
Parameters
Type | Name | Description |
---|---|---|
string | writeLock | Enforces conflict checking when updating an existing data item. This field should be omitted when creating a new data item. When updating an existing item, omitting this field ignores write conflicts. When present, an error response will be returned if the writeLock in the request does not match the stored writeLock. (required). |
Properties
WriteLock
Enforces conflict checking when updating an existing data item. This field should be omitted when creating a new data item. When updating an existing item, omitting this field ignores write conflicts. When present, an error response will be returned if the writeLock in the request does not match the stored writeLock.
Declaration
[DataMember(Name = "writeLock", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string WriteLock { get; set; }
Property Value
Type | Description |
---|---|
string | Enforces conflict checking when updating an existing data item. This field should be omitted when creating a new data item. When updating an existing item, omitting this field ignores write conflicts. When present, an error response will be returned if the writeLock in the request does not match the stored writeLock. |