File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ class Signature implements ModelBase {
6060 set signatureType (Signature_SignatureTypeEnum ? val) => _signatureType = val;
6161
6262
63- /// Gets or sets an array of bytes representing a signature value.
64- ByteData ? _signatureValue;
63+ /// Gets or sets an array of bytes representing a signature value as base64 string .
64+ String ? _signatureValue;
6565
66- ByteData ? get signatureValue => _signatureValue;
67- set signatureValue (ByteData ? val) => _signatureValue = val;
66+ String ? get signatureValue => _signatureValue;
67+ set signatureValue (String ? val) => _signatureValue = val;
6868
6969
7070 /// Gets or sets the time the document was signed.
@@ -117,7 +117,7 @@ class Signature implements ModelBase {
117117 }
118118
119119 if (json.containsKey ('SignatureValue' )) {
120- signatureValue = json['SignatureValue' ] as ByteData ;
120+ signatureValue = json['SignatureValue' ] as String ;
121121 } else {
122122 signatureValue = null ;
123123 }
You can’t perform that action at this time.
0 commit comments