Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proto/Docflow/DocflowV3.proto
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@ message TtGisFixationCancellation
{
required Entity Entity = 1;
required SignatureV3 Signature = 2;
}
}
4 changes: 2 additions & 2 deletions proto/Docflow/DocflowV4.proto
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ message AmendmentRequestDocflowV4
required int32 AmendmentFlags = 6;
optional string PlainText = 7;
optional ConfirmationDocflowV4 ConfirmationDocflow = 8;
optional UniversalMessageAttachmentDocflow UniversalMessage = 9;
optional UniversalMessageAttachmentDocflow UniversalMessage = 9;
}

message ReceiptDocflowV4
Expand Down Expand Up @@ -102,4 +102,4 @@ message DocflowV4
repeated OuterDocflowEntities OuterDocflowEntities = 13;
required DocflowStatusV3 DocflowStatus = 14;
optional TtGisFixationDocflow TtGisFixation = 15;
}
}
2 changes: 2 additions & 0 deletions proto/Docflow/UniversalMessageAttachmentDocflow.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import "Docflow/Attachment.proto";
import "UniversalMessage.proto";
import "Docflow/RoamingNotification.proto";

package Diadoc.Api.Proto.Docflow;

Expand All @@ -8,4 +9,5 @@ message UniversalMessageAttachmentDocflow {
required UniversalMessageInfo MessageInfo = 2;
required string ContentTypeId = 3;
optional bool IsRead = 4 [default = false];
optional RoamingNotification RoamingNotification = 5;
}
30 changes: 15 additions & 15 deletions src/Com/DocflowsV3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public ReadonlyList EventsList

public Com.TotalCountType TotalCountTypeValue
{
get { return (Com.TotalCountType)TotalCountType; }
get { return (Com.TotalCountType) TotalCountType; }
}
}

Expand Down Expand Up @@ -271,7 +271,7 @@ public partial class DocumentInfoV3 : SafeComObject, IDocumentInfoV3
{
public Com.DocumentDirection DocumentDirectionValue
{
get { return (Com.DocumentDirection)DocumentDirection; }
get { return (Com.DocumentDirection) DocumentDirection; }
}

public ReadonlyList MetadataList
Expand All @@ -286,7 +286,7 @@ public ReadonlyList CustomDataList

public Com.MessageType MessageTypeValue
{
get { return (Com.MessageType)MessageType; }
get { return (Com.MessageType) MessageType; }
}
}

Expand Down Expand Up @@ -370,7 +370,7 @@ public partial class PacketInfo : SafeComObject, IPacketInfo
{
public Com.LockMode LockModeValue
{
get { return (Com.LockMode)LockMode; }
get { return (Com.LockMode) LockMode; }
}
}

Expand Down Expand Up @@ -519,7 +519,7 @@ public partial class SenderTitleDocflow : SafeComObject, ISenderTitleDocflow
{
public Com.SenderSignatureStatus SenderSignatureStatusValue
{
get { return (Com.SenderSignatureStatus)SenderSignatureStatus; }
get { return (Com.SenderSignatureStatus) SenderSignatureStatus; }
}
}

Expand Down Expand Up @@ -585,7 +585,7 @@ public partial class ParticipantResponseDocflow : SafeComObject, IParticipantRes
{
public Com.RecipientResponseStatus ResponseStatusValue
{
get { return (Com.RecipientResponseStatus)ResponseStatus; }
get { return (Com.RecipientResponseStatus) ResponseStatus; }
}
}

Expand Down Expand Up @@ -633,7 +633,7 @@ public partial class RevocationDocflowV3 : SafeComObject, IRevocationDocflowV3
{
public Com.RevocationStatus RevocationStatusValue
{
get { return (Com.RevocationStatus)RevocationStatus; }
get { return (Com.RevocationStatus) RevocationStatus; }
}

public ReadonlyList OuterDocflowEntitiesList
Expand Down Expand Up @@ -698,7 +698,7 @@ public partial class ResolutionDocflowV3 : SafeComObject, IResolutionDocflowV3
{
public Com.ResolutionStatus ResolutionStatusValue
{
get { return (Com.ResolutionStatus)ResolutionStatus; }
get { return (Com.ResolutionStatus) ResolutionStatus; }
}
}

Expand Down Expand Up @@ -761,13 +761,13 @@ public partial class ResolutionRequestV3 : SafeComObject, IResolutionRequestV3
{
public Com.ResolutionRequestType RequestTypeValue
{
get { return (Com.ResolutionRequestType)RequestType; }
set { RequestType = (ResolutionRequestType)value; }
get { return (Com.ResolutionRequestType) RequestType; }
set { RequestType = (ResolutionRequestType) value; }
}

public ReadonlyList ActionsList
{
get { return new ReadonlyList(Actions.Select(a => (Com.ResolutionAction)a).ToArray()); }
get { return new ReadonlyList(Actions.Select(a => (Com.ResolutionAction) a).ToArray()); }
}
}

Expand All @@ -790,8 +790,8 @@ public partial class ResolutionV3 : SafeComObject, IResolutionV3
{
public Com.ResolutionType ResolutionTypeValue
{
get { return (Com.ResolutionType)ResolutionType; }
set { ResolutionType = (ResolutionType)value; }
get { return (Com.ResolutionType) ResolutionType; }
set { ResolutionType = (ResolutionType) value; }
}
}

Expand Down Expand Up @@ -852,7 +852,7 @@ public partial class ReceiptDocflowV3 : SafeComObject, IReceiptDocflowV3
{
public Com.GeneralReceiptStatus StatusValue
{
get { return (Com.GeneralReceiptStatus)Status; }
get { return (Com.GeneralReceiptStatus) Status; }
}
}

Expand Down Expand Up @@ -985,7 +985,7 @@ public interface IPowerOfAttorneyAttachmentStatus
Com.StatusName StatusName { get; }
string Comment { get; }
}

[ComVisible(true)]
[ProgId("Diadoc.Api.PowerOfAttorneyAttachmentStatus")]
[Guid("AFD8A332-B774-48CE-941C-3349029B31AB")]
Expand Down
1 change: 1 addition & 0 deletions src/Com/UniversalMessageAttachmentDocflow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public interface IUniversalMessageAttachmentDocflow
Diadoc.Api.Proto.UniversalMessageInfo MessageInfo { get; }
string ContentTypeId { get; }
bool IsRead { get; }
RoamingNotification RoamingNotification { get; }
}

[ComVisible(true)]
Expand Down
2 changes: 1 addition & 1 deletion src/Proto/Docflow/DocflowV3.proto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -836,4 +836,4 @@ public Diadoc.Api.Proto.Docflow.SignatureV3 Signature
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}

}
}
2 changes: 1 addition & 1 deletion src/Proto/Docflow/DocflowV4.proto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -590,4 +590,4 @@ public Diadoc.Api.Proto.Docflow.TtGisFixationDocflow TtGisFixation
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}

}
}
10 changes: 10 additions & 0 deletions src/Proto/Docflow/UniversalMessageAttachmentDocflow.proto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
// Generated from: Docflow/UniversalMessageAttachmentDocflow.proto
// Note: requires additional types generated from: Docflow/Attachment.proto
// Note: requires additional types generated from: UniversalMessage.proto
// Note: requires additional types generated from: Docflow/RoamingNotification.proto
namespace Diadoc.Api.Proto.Docflow
{
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UniversalMessageAttachmentDocflow")]
Expand Down Expand Up @@ -47,6 +48,15 @@ public bool IsRead
get { return _IsRead; }
set { _IsRead = value; }
}

private Diadoc.Api.Proto.Docflow.RoamingNotification _RoamingNotification = null;
[global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"RoamingNotification", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public Diadoc.Api.Proto.Docflow.RoamingNotification RoamingNotification
{
get { return _RoamingNotification; }
set { _RoamingNotification = value; }
}
private global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
Expand Down
Loading