Show / Hide Table of Contents

Class UpdatePreRegistrationRequest

The message to be sent when updating a preregistration, a added case to a meeting, including associated metadata.

Inheritance
object
PlatinaMessageBase
UpdatePreRegistrationRequest
Inherited Members
PlatinaMessageBase.UserName
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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
PlatinaMessageBase.IsValid()
Remarks

Only applicable on server code. This method is not exposed at client.

Back to top Created by Formpipe