File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -7018,6 +7018,7 @@ private function setImageParametersDto(ImageParametersDTO $imageParametersDto):
7018
7018
}
7019
7019
7020
7020
private $ svg ;
7021
+ private $ pdf ;
7021
7022
7022
7023
function __construct (ImageParametersDTO $ imageParametersDto )
7023
7024
{
@@ -7033,6 +7034,7 @@ public function obtainDto(...$args)
7033
7034
public function initFieldsFromDto (): void
7034
7035
{
7035
7036
$ this ->svg = new SvgParameters ($ this ->getImageParametersDto ()->svg );
7037
+ $ this ->pdf = new PdfParameters ($ this ->getImageParametersDto ()->pdf );
7036
7038
}
7037
7039
7038
7040
/**
@@ -7051,6 +7053,26 @@ function setSvg(SvgParameters $svg) : void
7051
7053
$ this ->svg = $ svg ;
7052
7054
$ this ->getImageParametersDto ()->svg = $ svg ->getSvgParametersDto ();
7053
7055
}
7056
+
7057
+ /**
7058
+ * <p>
7059
+ * PDF parameters
7060
+ * </p>
7061
+ */
7062
+ function getPdf ()
7063
+ {
7064
+ return $ this ->pdf ;
7065
+ }
7066
+ /**
7067
+ * <p>
7068
+ * PDF parameters
7069
+ * </p>
7070
+ */
7071
+ function setPdf (PdfParameters $ value )
7072
+ {
7073
+ $ this ->pdf = $ value ;
7074
+ $ this ->getImageParametersDto ()->pdf = $ value ->getPdfParametersDto ();
7075
+ }
7054
7076
}
7055
7077
7056
7078
/**
You can’t perform that action at this time.
0 commit comments