Skip to content

Commit

Permalink
generated with codegen at box/box-codegen@e7f791d and spec at box/box…
Browse files Browse the repository at this point in the history
  • Loading branch information
box-sdk-build committed Sep 6, 2023
1 parent 5140f17 commit e3dd903
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions box_sdk_gen/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -11312,6 +11312,10 @@ def __init__(
self.order = order


class SignTemplateTypeField(str, Enum):
SIGN_TEMPLATE = 'sign-template'


class SignTemplateAdditionalInfoFieldNonEditableField(str, Enum):
EMAIL_SUBJECT = 'email_subject'
EMAIL_MESSAGE = 'email_message'
Expand Down Expand Up @@ -11429,6 +11433,7 @@ def __init__(
class SignTemplate(BaseObject):
def __init__(
self,
type: Optional[SignTemplateTypeField] = None,
id: Optional[str] = None,
name: Optional[str] = None,
email_subject: Optional[str] = None,
Expand All @@ -11448,6 +11453,8 @@ def __init__(
**kwargs
):
"""
:param type: object type
:type type: Optional[SignTemplateTypeField], optional
:param id: Template identifier.
:type id: Optional[str], optional
:param name: The name of the template.
Expand Down Expand Up @@ -11481,6 +11488,7 @@ def __init__(
:type custom_branding: Optional[SignTemplateCustomBrandingField], optional
"""
super().__init__(**kwargs)
self.type = type
self.id = id
self.name = name
self.email_subject = email_subject
Expand Down

0 comments on commit e3dd903

Please sign in to comment.