Class GetDeedsRequest
Message sent to retrieve deeds under a specific journalized case
Inherited Members
Namespace: Integration.MessageContracts.DeedManagement
Syntax
[MessageContract]
public class GetDeedsRequest : PlatinaMessageBase
Properties
JournalizedCaseID
The unigue identifier of the journalized case.
Declaration
[MessageBodyMember]
public int JournalizedCaseID { get; set; }
Property Value
Type | Description |
---|---|
int | [required] The unigue identifier of the journalized case. |
PageNumber
The page number of the list, in case there are several pages in the list.
Declaration
[MessageBodyMember]
public int PageNumber { get; set; }
Property Value
Type | Description |
---|---|
int | [required] The page number of the list, in case there are several pages in the list. The first page in the list has number 1. |
Remarks
May be used by the consumer when paging through many pages.
RecordsPerPage
Specifies the number of objects to be returned per page by the system.
Declaration
[MessageBodyMember]
public int RecordsPerPage { get; set; }
Property Value
Type | Description |
---|---|
int | [required] Specifies the number of objects to be returned per page by the system. |
SortOrder
The sort order.
Declaration
[MessageBodyMember]
public int SortOrder { get; set; }
Property Value
Type | Description |
---|---|
int | The sort order. |
Methods
IsValid()
Check if message request is valid.
Declaration
public override IsValidResult IsValid()
Returns
Type | Description |
---|---|
IsValidResult | IsValidResult containing an error message if invalid. |