Skip to content

Commit 2e19b7b

Browse files
authored
Merge pull request #15 from Mirkin-source/patch-3
Update FileMetadata.php
2 parents 13087b9 + b0de067 commit 2e19b7b

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

src/Models/FileMetadata.php

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class FileMetadata
99
public $Description; // String
1010
public $Signers; // Map of <String,FormSets>
1111
public $FormSets; // Map of <String,Map of <String,FormSetField>>
12+
public $setParaph; // Boolean
1213

1314
function __construct(
1415
$displayName = null,
@@ -21,6 +22,7 @@ function __construct(
2122
$this->Description = $description;
2223
$this->Signers = $signers;
2324
$this->FormSets = $formSets;
25+
$this->setParaph = $setParaph;
2426
}
2527

2628
/**
@@ -117,4 +119,23 @@ public function setFormSets($FormSets)
117119

118120
return $this;
119121
}
120-
}
122+
123+
/**
124+
* @return null
125+
*/
126+
public function getsetParaph()
127+
{
128+
return $this->setParaph;
129+
}
130+
131+
/**
132+
* @param false $setParaph
133+
* @return FileMetadata
134+
*/
135+
public function setsetParaph($setParaph)
136+
{
137+
$this->setParaph = $setParaph;
138+
139+
return $this;
140+
}
141+
}

0 commit comments

Comments
 (0)