Skip to content

Commit

Permalink
Encrypted UTD/UCD support
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaroslav Zyubanov committed Jun 2, 2017
1 parent fa579c7 commit 5fd5152
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions proto/Events/DiadocMessage-PostApi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ message EncryptedDocumentMetadata {
message EncryptedXmlBasicDocumentMetadata {
required string FormationDate = 1;
required string FormationTime = 2;
optional string DocumentName = 3;
}

message EncryptedInvoiceMetadata {
Expand Down
9 changes: 9 additions & 0 deletions src/Proto/Events/DiadocMessage-PostApi.proto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,15 @@ public string FormationTime
get { return _FormationTime; }
set { _FormationTime = value; }
}

private string _DocumentName = "";
[global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"DocumentName", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string DocumentName
{
get { return _DocumentName; }
set { _DocumentName = 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

0 comments on commit 5fd5152

Please sign in to comment.