-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #944 from AsakyraZ/poa-for-prepare-documents-to-sign
Add PowerOfAttorney for PrepareDocumentsToSign and GenerateTitleXml methods
- Loading branch information
Showing
11 changed files
with
152 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import "PowersOfAttorney/PowerOfAttorney.proto"; | ||
|
||
package Diadoc.Api.Proto.Events; | ||
|
||
message PowerOfAttorneyToPost { | ||
optional PowersOfAttorney.PowerOfAttorneyFullId FullId = 1; | ||
required bool UseDefault = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by a tool. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
// Generated from: Events/PowerOfAttorneyToPost.proto | ||
// Note: requires additional types generated from: PowersOfAttorney/PowerOfAttorney.proto | ||
namespace Diadoc.Api.Proto.Events | ||
{ | ||
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PowerOfAttorneyToPost")] | ||
public partial class PowerOfAttorneyToPost : global::ProtoBuf.IExtensible | ||
{ | ||
public PowerOfAttorneyToPost() {} | ||
|
||
|
||
private Diadoc.Api.Proto.PowersOfAttorney.PowerOfAttorneyFullId _FullId = null; | ||
[global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"FullId", DataFormat = global::ProtoBuf.DataFormat.Default)] | ||
[global::System.ComponentModel.DefaultValue(null)] | ||
public Diadoc.Api.Proto.PowersOfAttorney.PowerOfAttorneyFullId FullId | ||
{ | ||
get { return _FullId; } | ||
set { _FullId = value; } | ||
} | ||
private bool _UseDefault; | ||
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"UseDefault", DataFormat = global::ProtoBuf.DataFormat.Default)] | ||
public bool UseDefault | ||
{ | ||
get { return _UseDefault; } | ||
set { _UseDefault = value; } | ||
} | ||
private global::ProtoBuf.IExtension extensionObject; | ||
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) | ||
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters