@@ -50,6 +50,7 @@ class SignatureCustomAppearance(object):
5050 swagger_types = {
5151 'font_family_name' : 'str' ,
5252 'font_size' : 'float' ,
53+ 'rotation' : 'Rotation' ,
5354 'show_contact_info' : 'bool' ,
5455 'show_reason' : 'bool' ,
5556 'show_location' : 'bool' ,
@@ -59,12 +60,17 @@ class SignatureCustomAppearance(object):
5960 'digital_signed_label' : 'str' ,
6061 'date_signed_at_label' : 'str' ,
6162 'date_time_local_format' : 'str' ,
62- 'date_time_format' : 'str'
63+ 'date_time_format' : 'str' ,
64+ 'background_color' : 'Color' ,
65+ 'foreground_color' : 'Color' ,
66+ 'use_digital_subject_format' : 'bool' ,
67+ 'digital_subject_format' : 'list[SignatureSubjectNameElements]'
6368 }
6469
6570 attribute_map = {
6671 'font_family_name' : 'FontFamilyName' ,
6772 'font_size' : 'FontSize' ,
73+ 'rotation' : 'Rotation' ,
6874 'show_contact_info' : 'ShowContactInfo' ,
6975 'show_reason' : 'ShowReason' ,
7076 'show_location' : 'ShowLocation' ,
@@ -74,16 +80,21 @@ class SignatureCustomAppearance(object):
7480 'digital_signed_label' : 'DigitalSignedLabel' ,
7581 'date_signed_at_label' : 'DateSignedAtLabel' ,
7682 'date_time_local_format' : 'DateTimeLocalFormat' ,
77- 'date_time_format' : 'DateTimeFormat'
83+ 'date_time_format' : 'DateTimeFormat' ,
84+ 'background_color' : 'BackgroundColor' ,
85+ 'foreground_color' : 'ForegroundColor' ,
86+ 'use_digital_subject_format' : 'UseDigitalSubjectFormat' ,
87+ 'digital_subject_format' : 'DigitalSubjectFormat'
7888 }
7989
80- def __init__ (self , font_family_name = None , font_size = None , show_contact_info = None , show_reason = None , show_location = None , contact_info_label = None , reason_label = None , location_label = None , digital_signed_label = None , date_signed_at_label = None , date_time_local_format = None , date_time_format = None ):
90+ def __init__ (self , font_family_name = None , font_size = None , rotation = None , show_contact_info = None , show_reason = None , show_location = None , contact_info_label = None , reason_label = None , location_label = None , digital_signed_label = None , date_signed_at_label = None , date_time_local_format = None , date_time_format = None , background_color = None , foreground_color = None , use_digital_subject_format = None , digital_subject_format = None ):
8191 """
8292 SignatureCustomAppearance - a model defined in Swagger
8393 """
8494
8595 self ._font_family_name = None
8696 self ._font_size = None
97+ self ._rotation = None
8798 self ._show_contact_info = None
8899 self ._show_reason = None
89100 self ._show_location = None
@@ -94,10 +105,16 @@ def __init__(self, font_family_name=None, font_size=None, show_contact_info=None
94105 self ._date_signed_at_label = None
95106 self ._date_time_local_format = None
96107 self ._date_time_format = None
108+ self ._background_color = None
109+ self ._foreground_color = None
110+ self ._use_digital_subject_format = None
111+ self ._digital_subject_format = None
97112
98113 if font_family_name is not None :
99114 self .font_family_name = font_family_name
100- self .font_size = font_size
115+ if font_size is not None :
116+ self .font_size = font_size
117+ self .rotation = rotation
101118 self .show_contact_info = show_contact_info
102119 self .show_reason = show_reason
103120 self .show_location = show_location
@@ -115,6 +132,13 @@ def __init__(self, font_family_name=None, font_size=None, show_contact_info=None
115132 self .date_time_local_format = date_time_local_format
116133 if date_time_format is not None :
117134 self .date_time_format = date_time_format
135+ if background_color is not None :
136+ self .background_color = background_color
137+ if foreground_color is not None :
138+ self .foreground_color = foreground_color
139+ self .use_digital_subject_format = use_digital_subject_format
140+ if digital_subject_format is not None :
141+ self .digital_subject_format = digital_subject_format
118142
119143 @property
120144 def font_family_name (self ):
@@ -159,11 +183,34 @@ def font_size(self, font_size):
159183 :param font_size: The font_size of this SignatureCustomAppearance.
160184 :type: float
161185 """
162- if font_size is None :
163- raise ValueError ("Invalid value for `font_size`, must not be `None`" )
164186
165187 self ._font_size = font_size
166188
189+ @property
190+ def rotation (self ):
191+ """
192+ Gets the rotation of this SignatureCustomAppearance.
193+ Gets or sets signature rotation.
194+
195+ :return: The rotation of this SignatureCustomAppearance.
196+ :rtype: Rotation
197+ """
198+ return self ._rotation
199+
200+ @rotation .setter
201+ def rotation (self , rotation ):
202+ """
203+ Sets the rotation of this SignatureCustomAppearance.
204+ Gets or sets signature rotation.
205+
206+ :param rotation: The rotation of this SignatureCustomAppearance.
207+ :type: Rotation
208+ """
209+ if rotation is None :
210+ raise ValueError ("Invalid value for `rotation`, must not be `None`" )
211+
212+ self ._rotation = rotation
213+
167214 @property
168215 def show_contact_info (self ):
169216 """
@@ -400,6 +447,100 @@ def date_time_format(self, date_time_format):
400447
401448 self ._date_time_format = date_time_format
402449
450+ @property
451+ def background_color (self ):
452+ """
453+ Gets the background_color of this SignatureCustomAppearance.
454+ Gets/sets background color.
455+
456+ :return: The background_color of this SignatureCustomAppearance.
457+ :rtype: Color
458+ """
459+ return self ._background_color
460+
461+ @background_color .setter
462+ def background_color (self , background_color ):
463+ """
464+ Sets the background_color of this SignatureCustomAppearance.
465+ Gets/sets background color.
466+
467+ :param background_color: The background_color of this SignatureCustomAppearance.
468+ :type: Color
469+ """
470+
471+ self ._background_color = background_color
472+
473+ @property
474+ def foreground_color (self ):
475+ """
476+ Gets the foreground_color of this SignatureCustomAppearance.
477+ Gets/sets foreground color.
478+
479+ :return: The foreground_color of this SignatureCustomAppearance.
480+ :rtype: Color
481+ """
482+ return self ._foreground_color
483+
484+ @foreground_color .setter
485+ def foreground_color (self , foreground_color ):
486+ """
487+ Sets the foreground_color of this SignatureCustomAppearance.
488+ Gets/sets foreground color.
489+
490+ :param foreground_color: The foreground_color of this SignatureCustomAppearance.
491+ :type: Color
492+ """
493+
494+ self ._foreground_color = foreground_color
495+
496+ @property
497+ def use_digital_subject_format (self ):
498+ """
499+ Gets the use_digital_subject_format of this SignatureCustomAppearance.
500+ Gets/sets subject format usage.
501+
502+ :return: The use_digital_subject_format of this SignatureCustomAppearance.
503+ :rtype: bool
504+ """
505+ return self ._use_digital_subject_format
506+
507+ @use_digital_subject_format .setter
508+ def use_digital_subject_format (self , use_digital_subject_format ):
509+ """
510+ Sets the use_digital_subject_format of this SignatureCustomAppearance.
511+ Gets/sets subject format usage.
512+
513+ :param use_digital_subject_format: The use_digital_subject_format of this SignatureCustomAppearance.
514+ :type: bool
515+ """
516+ if use_digital_subject_format is None :
517+ raise ValueError ("Invalid value for `use_digital_subject_format`, must not be `None`" )
518+
519+ self ._use_digital_subject_format = use_digital_subject_format
520+
521+ @property
522+ def digital_subject_format (self ):
523+ """
524+ Gets the digital_subject_format of this SignatureCustomAppearance.
525+ Gets/sets subject format.
526+
527+ :return: The digital_subject_format of this SignatureCustomAppearance.
528+ :rtype: list[SignatureSubjectNameElements]
529+ """
530+ return self ._digital_subject_format
531+
532+ @digital_subject_format .setter
533+ def digital_subject_format (self , digital_subject_format ):
534+ """
535+ Sets the digital_subject_format of this SignatureCustomAppearance.
536+ Gets/sets subject format.
537+
538+ :param digital_subject_format: The digital_subject_format of this SignatureCustomAppearance.
539+ :type: list[SignatureSubjectNameElements]
540+ """
541+
542+ self ._digital_subject_format = digital_subject_format
543+
403544 def to_dict (self ):
404545 """
405546 Returns the model properties as a dict
0 commit comments