Class GetLocationsResponse
Results of a GetLocationsRequest.
Properties
NAME | TYPE | DESCRIPTION |
---|---|---|
RequestId | string | Unique identifier used to identify the request associated with the response. |
Result | ResponseResultType | Value indicating type of result. Possible values: Error (default), Success, ValidationError, NoChange |
ResultCode | string | Can be Error or Resource code depending on type of result. |
ResultMessage | string | Message regarding details of the Result. |
ValidationResults | ValidationResult[] | Array of ValidationResult objects containing messages regarding input validation. |
Credentials | TokenCredentials | Credentials for subsequent web service requests. |
Locations | Location[] | The list of locations found. |
Location
NAME | TYPE | DESCRIPTION |
---|---|---|
IsEnabled | bool | Indicates whether the Locations is enabled or not. |
LocationNumber | string | A unique custom value that correlates to the FI. |
LocationReference | string | This is the unique identifier assigned to the location for use in requests/responses in the mRDC API. This identifier is generated and used by the mRDC API and is different from the Location ID. |
Name | string | The Location name. |
Examples
{
"__type": "GetLocationsResponse:#JackHenry.Eps.Mobile.RDC",
"Locations": [
{
"__type": "Location:#JackHenry.Eps.Mobile.RDC",
"LocationReference": "String Content",
"Name": "String Content",
"IsEnabled": true,
"LocationNumber": "String Content"
}
]
}
Methods
Exception(string)
Declaration
public void Exception(string message)
Parameters
TYPE | NAME | DESCRIPTION |
---|---|---|
System.String | message |
NullRequestResonse()
Declaration
public static Response NullRequestResonse()
Return Value
TYPE | DESCRIPTION |
---|---|
Response |
Success()
Declaration
public void Success()
Success(String)
Declaration
public void Success(string resultMessage)
Parameters
TYPE | NAME | DESCRIPTION |
---|---|---|
System.String | resultMessage |