This function will un-assign the lock from the specified ATM. INPUTS==> ATM ENTITY. RETURN==> (result)
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Entity value for the ATM (database value) |
integer |
Required |
None.
UnAssignLockFromAtmResponse
UnAssignLockFromAtmResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Header | ResponseHeader |
None. |
|
| Body | UnAssignLockFromAtmResponseBody |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| Message |
Message |
string |
None. |
| StatusCode |
Status code |
ResponseStatus |
None. |
| Status |
Status |
string |
None. |
| ErrorId |
Error id |
string |
None. |
| Name | Description | Type | Additional information |
|---|---|---|---|
| LockUnAssigned |
Flag to show if lock was successfully un-assigned |
boolean |
None. |
{
"Header": {
"Message": "sample string 1",
"StatusCode": 0,
"Status": "sample string 2",
"ErrorId": "sample string 3"
},
"Body": {
"LockUnAssigned": true
}
}
<UnAssignLockFromAtmResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.Atm">
<Body xmlns:d2p1="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses.Atm" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<d2p1:LockUnAssigned>true</d2p1:LockUnAssigned>
</Body>
<Header xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<ErrorId>sample string 3</ErrorId>
<Message>sample string 1</Message>
<Status>sample string 2</Status>
<StatusCode>Ok</StatusCode>
</Header>
</UnAssignLockFromAtmResponse>