Class GetPreRegistrationRequest
A message to be sent by consumer when requesting preregistrations (journalized cases added to a meeting) of s specified journalized case and meeting.
Inherited Members
Namespace: Integration.MessageContracts.MeetingManagement
Syntax
[MessageContract]
public class GetPreRegistrationRequest : PlatinaMessageBase
Remarks
If meeting not specified, systems return all.
Properties
JournalizedCaseID
The unique id of the journalized case that has been added to a meeting.
Declaration
[MessageBodyMember]
public int JournalizedCaseID { get; set; }
Property Value
Type | Description |
---|---|
int | [required] The unique id of the journalized case that has been added to a meeting. |
Remarks
If meeting not specified, systems return all.
MeetingID
The meeting identifier.
Declaration
[MessageBodyMember]
public int? MeetingID { get; set; }
Property Value
Type | Description |
---|---|
int? | The meeting identifier. |
Remarks
If provided value is null, all preregistration are returned.
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.