@@ -53,14 +53,17 @@ class Cell(object):
5353 'border' : 'BorderInfo' ,
5454 'background_color' : 'Color' ,
5555 'background_image_file' : 'str' ,
56+ 'background_image_storage_file' : 'str' ,
5657 'alignment' : 'HorizontalAlignment' ,
5758 'default_cell_text_state' : 'TextState' ,
5859 'paragraphs' : 'list[TextRect]' ,
5960 'is_word_wrapped' : 'bool' ,
6061 'vertical_alignment' : 'VerticalAlignment' ,
6162 'col_span' : 'int' ,
6263 'row_span' : 'int' ,
63- 'width' : 'float'
64+ 'width' : 'float' ,
65+ 'html_fragment' : 'str' ,
66+ 'images' : 'list[ImageFragment]'
6467 }
6568
6669 attribute_map = {
@@ -69,17 +72,20 @@ class Cell(object):
6972 'border' : 'Border' ,
7073 'background_color' : 'BackgroundColor' ,
7174 'background_image_file' : 'BackgroundImageFile' ,
75+ 'background_image_storage_file' : 'BackgroundImageStorageFile' ,
7276 'alignment' : 'Alignment' ,
7377 'default_cell_text_state' : 'DefaultCellTextState' ,
7478 'paragraphs' : 'Paragraphs' ,
7579 'is_word_wrapped' : 'IsWordWrapped' ,
7680 'vertical_alignment' : 'VerticalAlignment' ,
7781 'col_span' : 'ColSpan' ,
7882 'row_span' : 'RowSpan' ,
79- 'width' : 'Width'
83+ 'width' : 'Width' ,
84+ 'html_fragment' : 'HtmlFragment' ,
85+ 'images' : 'Images'
8086 }
8187
82- def __init__ (self , is_no_border = None , margin = None , border = None , background_color = None , background_image_file = None , alignment = None , default_cell_text_state = None , paragraphs = None , is_word_wrapped = None , vertical_alignment = None , col_span = None , row_span = None , width = None ):
88+ def __init__ (self , is_no_border = None , margin = None , border = None , background_color = None , background_image_file = None , background_image_storage_file = None , alignment = None , default_cell_text_state = None , paragraphs = None , is_word_wrapped = None , vertical_alignment = None , col_span = None , row_span = None , width = None , html_fragment = None , images = None ):
8389 """
8490 Cell - a model defined in Swagger
8591 """
@@ -89,6 +95,7 @@ def __init__(self, is_no_border=None, margin=None, border=None, background_color
8995 self ._border = None
9096 self ._background_color = None
9197 self ._background_image_file = None
98+ self ._background_image_storage_file = None
9299 self ._alignment = None
93100 self ._default_cell_text_state = None
94101 self ._paragraphs = None
@@ -97,6 +104,8 @@ def __init__(self, is_no_border=None, margin=None, border=None, background_color
97104 self ._col_span = None
98105 self ._row_span = None
99106 self ._width = None
107+ self ._html_fragment = None
108+ self ._images = None
100109
101110 if is_no_border is not None :
102111 self .is_no_border = is_no_border
@@ -108,6 +117,8 @@ def __init__(self, is_no_border=None, margin=None, border=None, background_color
108117 self .background_color = background_color
109118 if background_image_file is not None :
110119 self .background_image_file = background_image_file
120+ if background_image_storage_file is not None :
121+ self .background_image_storage_file = background_image_storage_file
111122 if alignment is not None :
112123 self .alignment = alignment
113124 if default_cell_text_state is not None :
@@ -124,6 +135,10 @@ def __init__(self, is_no_border=None, margin=None, border=None, background_color
124135 self .row_span = row_span
125136 if width is not None :
126137 self .width = width
138+ if html_fragment is not None :
139+ self .html_fragment = html_fragment
140+ if images is not None :
141+ self .images = images
127142
128143 @property
129144 def is_no_border (self ):
@@ -240,6 +255,29 @@ def background_image_file(self, background_image_file):
240255
241256 self ._background_image_file = background_image_file
242257
258+ @property
259+ def background_image_storage_file (self ):
260+ """
261+ Gets the background_image_storage_file of this Cell.
262+ Gets or sets path of the background image file from storage.
263+
264+ :return: The background_image_storage_file of this Cell.
265+ :rtype: str
266+ """
267+ return self ._background_image_storage_file
268+
269+ @background_image_storage_file .setter
270+ def background_image_storage_file (self , background_image_storage_file ):
271+ """
272+ Sets the background_image_storage_file of this Cell.
273+ Gets or sets path of the background image file from storage.
274+
275+ :param background_image_storage_file: The background_image_storage_file of this Cell.
276+ :type: str
277+ """
278+
279+ self ._background_image_storage_file = background_image_storage_file
280+
243281 @property
244282 def alignment (self ):
245283 """
@@ -424,6 +462,52 @@ def width(self, width):
424462
425463 self ._width = width
426464
465+ @property
466+ def html_fragment (self ):
467+ """
468+ Gets the html_fragment of this Cell.
469+ Gets or sets Html fragment.
470+
471+ :return: The html_fragment of this Cell.
472+ :rtype: str
473+ """
474+ return self ._html_fragment
475+
476+ @html_fragment .setter
477+ def html_fragment (self , html_fragment ):
478+ """
479+ Sets the html_fragment of this Cell.
480+ Gets or sets Html fragment.
481+
482+ :param html_fragment: The html_fragment of this Cell.
483+ :type: str
484+ """
485+
486+ self ._html_fragment = html_fragment
487+
488+ @property
489+ def images (self ):
490+ """
491+ Gets the images of this Cell.
492+ Gets or sets ImageFragment list.
493+
494+ :return: The images of this Cell.
495+ :rtype: list[ImageFragment]
496+ """
497+ return self ._images
498+
499+ @images .setter
500+ def images (self , images ):
501+ """
502+ Sets the images of this Cell.
503+ Gets or sets ImageFragment list.
504+
505+ :param images: The images of this Cell.
506+ :type: list[ImageFragment]
507+ """
508+
509+ self ._images = images
510+
427511 def to_dict (self ):
428512 """
429513 Returns the model properties as a dict
0 commit comments