Class UpdatePreRegistrationRequest
The message to be sent when updating a preregistration, a added case to a meeting, including associated metadata.
Inherited Members
Namespace: Integration.MessageContracts.MeetingManagement
Syntax
[MessageContract]
public class UpdatePreRegistrationRequest : PlatinaMessageBase
Properties
CaseID
The unique identifier of the journalized case being added to a meeting.
Declaration
[MessageBodyMember]
public int CaseID { get; set; }
Property Value
Type | Description |
---|---|
int | [required] The unique identifier of the journalized case being added to a meeting. |
DeedsAndDocumentIDs
The list of identifiers of the deeds and documents that should go together with the preregistration. The deeds and documents will be part of the meeting topic of the summons, prepared by the secretary.
Declaration
[MessageBodyMember]
public IList<int> DeedsAndDocumentIDs { get; set; }
Property Value
Type | Description |
---|---|
IList<int> | [required] The deeds and document ids. |
MeetingID
The unique identifier of the meeting to which the journalized case has been added.
Declaration
[MessageBodyMember]
public int MeetingID { get; set; }
Property Value
Type | Description |
---|---|
int | [required] The unique identifier of the meeting to which the journalized case has been added. |
ServiceWritingContent
The service writing content of the preregistration.
Declaration
[MessageBodyMember]
public ServiceWritingContentDTO ServiceWritingContent { get; set; }
Property Value
Type | Description |
---|---|
ServiceWritingContentDTO | The service writing content of the preregistration. |
Methods
IsValid()
Check if message request is valid.
Declaration
public override IsValidResult IsValid()
Returns
Type | Description |
---|---|
IsValidResult | IsValidResult containing an error message if invalid. |
Overrides
Remarks
Only applicable on server code. This method is not exposed at client.