signature
stringlengths 8
3.44k
| body
stringlengths 0
1.41M
| docstring
stringlengths 1
122k
| id
stringlengths 5
17
|
|---|---|---|---|
def to_str(self):
|
return pformat(self.to_dict())<EOL>
|
Returns the string representation of the model
|
f3071:c0:m62
|
def __repr__(self):
|
return self.to_str()<EOL>
|
For `print` and `pprint`
|
f3071:c0:m63
|
def __eq__(self, other):
|
if not isinstance(other, ChannelWithChildrenModel):<EOL><INDENT>return False<EOL><DEDENT>return self.__dict__ == other.__dict__<EOL>
|
Returns true if both objects are equal
|
f3071:c0:m64
|
def __ne__(self, other):
|
return not self == other<EOL>
|
Returns true if both objects are not equal
|
f3071:c0:m65
|
def __init__(self, url=None, width=None, height=None, size=None):
|
self.swagger_types = {<EOL>'<STR_LIT:url>': '<STR_LIT:str>',<EOL>'<STR_LIT:width>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT:size>': '<STR_LIT:str>'<EOL>}<EOL>self.attribute_map = {<EOL>'<STR_LIT:url>': '<STR_LIT:url>',<EOL>'<STR_LIT:width>': '<STR_LIT:width>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT:size>': '<STR_LIT:size>'<EOL>}<EOL>self._url = url<EOL>self._width = width<EOL>self._height = height<EOL>self._size = size<EOL>
|
GifImagesPreviewGif - a model defined in Swagger
:param dict swaggerTypes: The key is attribute name
and the value is attribute type.
:param dict attributeMap: The key is attribute name
and the value is json key in definition.
|
f3072:c0:m0
|
@property<EOL><INDENT>def url(self):<DEDENT>
|
return self._url<EOL>
|
Gets the url of this GifImagesPreviewGif.
The URL for this preview GIF.
:return: The url of this GifImagesPreviewGif.
:rtype: str
|
f3072:c0:m1
|
@url.setter<EOL><INDENT>def url(self, url):<DEDENT>
|
self._url = url<EOL>
|
Sets the url of this GifImagesPreviewGif.
The URL for this preview GIF.
:param url: The url of this GifImagesPreviewGif.
:type: str
|
f3072:c0:m2
|
@property<EOL><INDENT>def width(self):<DEDENT>
|
return self._width<EOL>
|
Gets the width of this GifImagesPreviewGif.
The width of this GIF in pixels.
:return: The width of this GifImagesPreviewGif.
:rtype: str
|
f3072:c0:m3
|
@width.setter<EOL><INDENT>def width(self, width):<DEDENT>
|
self._width = width<EOL>
|
Sets the width of this GifImagesPreviewGif.
The width of this GIF in pixels.
:param width: The width of this GifImagesPreviewGif.
:type: str
|
f3072:c0:m4
|
@property<EOL><INDENT>def height(self):<DEDENT>
|
return self._height<EOL>
|
Gets the height of this GifImagesPreviewGif.
The height of this GIF in pixels.
:return: The height of this GifImagesPreviewGif.
:rtype: str
|
f3072:c0:m5
|
@height.setter<EOL><INDENT>def height(self, height):<DEDENT>
|
self._height = height<EOL>
|
Sets the height of this GifImagesPreviewGif.
The height of this GIF in pixels.
:param height: The height of this GifImagesPreviewGif.
:type: str
|
f3072:c0:m6
|
@property<EOL><INDENT>def size(self):<DEDENT>
|
return self._size<EOL>
|
Gets the size of this GifImagesPreviewGif.
The size of this file in bytes.
:return: The size of this GifImagesPreviewGif.
:rtype: str
|
f3072:c0:m7
|
@size.setter<EOL><INDENT>def size(self, size):<DEDENT>
|
self._size = size<EOL>
|
Sets the size of this GifImagesPreviewGif.
The size of this file in bytes.
:param size: The size of this GifImagesPreviewGif.
:type: str
|
f3072:c0:m8
|
def to_dict(self):
|
result = {}<EOL>for attr, _ in iteritems(self.swagger_types):<EOL><INDENT>value = getattr(self, attr)<EOL>if isinstance(value, list):<EOL><INDENT>result[attr] = list(map(<EOL>lambda x: x.to_dict() if hasattr(x, "<STR_LIT>") else x,<EOL>value<EOL>))<EOL><DEDENT>elif hasattr(value, "<STR_LIT>"):<EOL><INDENT>result[attr] = value.to_dict()<EOL><DEDENT>elif isinstance(value, dict):<EOL><INDENT>result[attr] = dict(map(<EOL>lambda item: (item[<NUM_LIT:0>], item[<NUM_LIT:1>].to_dict())<EOL>if hasattr(item[<NUM_LIT:1>], "<STR_LIT>") else item,<EOL>value.items()<EOL>))<EOL><DEDENT>else:<EOL><INDENT>result[attr] = value<EOL><DEDENT><DEDENT>return result<EOL>
|
Returns the model properties as a dict
|
f3072:c0:m9
|
def to_str(self):
|
return pformat(self.to_dict())<EOL>
|
Returns the string representation of the model
|
f3072:c0:m10
|
def __repr__(self):
|
return self.to_str()<EOL>
|
For `print` and `pprint`
|
f3072:c0:m11
|
def __eq__(self, other):
|
if not isinstance(other, GifImagesPreviewGif):<EOL><INDENT>return False<EOL><DEDENT>return self.__dict__ == other.__dict__<EOL>
|
Returns true if both objects are equal
|
f3072:c0:m12
|
def __ne__(self, other):
|
return not self == other<EOL>
|
Returns true if both objects are not equal
|
f3072:c0:m13
|
def __init__(self, url=None, width=None, height=None):
|
self.swagger_types = {<EOL>'<STR_LIT:url>': '<STR_LIT:str>',<EOL>'<STR_LIT:width>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>'<EOL>}<EOL>self.attribute_map = {<EOL>'<STR_LIT:url>': '<STR_LIT:url>',<EOL>'<STR_LIT:width>': '<STR_LIT:width>',<EOL>'<STR_LIT>': '<STR_LIT>'<EOL>}<EOL>self._url = url<EOL>self._width = width<EOL>self._height = height<EOL>
|
GifImagesFixedHeightSmallStill - a model defined in Swagger
:param dict swaggerTypes: The key is attribute name
and the value is attribute type.
:param dict attributeMap: The key is attribute name
and the value is json key in definition.
|
f3073:c0:m0
|
@property<EOL><INDENT>def url(self):<DEDENT>
|
return self._url<EOL>
|
Gets the url of this GifImagesFixedHeightSmallStill.
The publicly-accessible direct URL for this GIF.
:return: The url of this GifImagesFixedHeightSmallStill.
:rtype: str
|
f3073:c0:m1
|
@url.setter<EOL><INDENT>def url(self, url):<DEDENT>
|
self._url = url<EOL>
|
Sets the url of this GifImagesFixedHeightSmallStill.
The publicly-accessible direct URL for this GIF.
:param url: The url of this GifImagesFixedHeightSmallStill.
:type: str
|
f3073:c0:m2
|
@property<EOL><INDENT>def width(self):<DEDENT>
|
return self._width<EOL>
|
Gets the width of this GifImagesFixedHeightSmallStill.
The width of this GIF in pixels.
:return: The width of this GifImagesFixedHeightSmallStill.
:rtype: str
|
f3073:c0:m3
|
@width.setter<EOL><INDENT>def width(self, width):<DEDENT>
|
self._width = width<EOL>
|
Sets the width of this GifImagesFixedHeightSmallStill.
The width of this GIF in pixels.
:param width: The width of this GifImagesFixedHeightSmallStill.
:type: str
|
f3073:c0:m4
|
@property<EOL><INDENT>def height(self):<DEDENT>
|
return self._height<EOL>
|
Gets the height of this GifImagesFixedHeightSmallStill.
The height of this GIF in pixels.
:return: The height of this GifImagesFixedHeightSmallStill.
:rtype: str
|
f3073:c0:m5
|
@height.setter<EOL><INDENT>def height(self, height):<DEDENT>
|
self._height = height<EOL>
|
Sets the height of this GifImagesFixedHeightSmallStill.
The height of this GIF in pixels.
:param height: The height of this GifImagesFixedHeightSmallStill.
:type: str
|
f3073:c0:m6
|
def to_dict(self):
|
result = {}<EOL>for attr, _ in iteritems(self.swagger_types):<EOL><INDENT>value = getattr(self, attr)<EOL>if isinstance(value, list):<EOL><INDENT>result[attr] = list(map(<EOL>lambda x: x.to_dict() if hasattr(x, "<STR_LIT>") else x,<EOL>value<EOL>))<EOL><DEDENT>elif hasattr(value, "<STR_LIT>"):<EOL><INDENT>result[attr] = value.to_dict()<EOL><DEDENT>elif isinstance(value, dict):<EOL><INDENT>result[attr] = dict(map(<EOL>lambda item: (item[<NUM_LIT:0>], item[<NUM_LIT:1>].to_dict())<EOL>if hasattr(item[<NUM_LIT:1>], "<STR_LIT>") else item,<EOL>value.items()<EOL>))<EOL><DEDENT>else:<EOL><INDENT>result[attr] = value<EOL><DEDENT><DEDENT>return result<EOL>
|
Returns the model properties as a dict
|
f3073:c0:m7
|
def to_str(self):
|
return pformat(self.to_dict())<EOL>
|
Returns the string representation of the model
|
f3073:c0:m8
|
def __repr__(self):
|
return self.to_str()<EOL>
|
For `print` and `pprint`
|
f3073:c0:m9
|
def __eq__(self, other):
|
if not isinstance(other, GifImagesFixedHeightSmallStill):<EOL><INDENT>return False<EOL><DEDENT>return self.__dict__ == other.__dict__<EOL>
|
Returns true if both objects are equal
|
f3073:c0:m10
|
def __ne__(self, other):
|
return not self == other<EOL>
|
Returns true if both objects are not equal
|
f3073:c0:m11
|
def __init__(self, meta=None):
|
self.swagger_types = {<EOL>'<STR_LIT>': '<STR_LIT>'<EOL>}<EOL>self.attribute_map = {<EOL>'<STR_LIT>': '<STR_LIT>'<EOL>}<EOL>self._meta = meta<EOL>
|
InlineResponse400 - a model defined in Swagger
:param dict swaggerTypes: The key is attribute name
and the value is attribute type.
:param dict attributeMap: The key is attribute name
and the value is json key in definition.
|
f3074:c0:m0
|
@property<EOL><INDENT>def meta(self):<DEDENT>
|
return self._meta<EOL>
|
Gets the meta of this InlineResponse400.
:return: The meta of this InlineResponse400.
:rtype: MetaContent
|
f3074:c0:m1
|
@meta.setter<EOL><INDENT>def meta(self, meta):<DEDENT>
|
self._meta = meta<EOL>
|
Sets the meta of this InlineResponse400.
:param meta: The meta of this InlineResponse400.
:type: MetaContent
|
f3074:c0:m2
|
def to_dict(self):
|
result = {}<EOL>for attr, _ in iteritems(self.swagger_types):<EOL><INDENT>value = getattr(self, attr)<EOL>if isinstance(value, list):<EOL><INDENT>result[attr] = list(map(<EOL>lambda x: x.to_dict() if hasattr(x, "<STR_LIT>") else x,<EOL>value<EOL>))<EOL><DEDENT>elif hasattr(value, "<STR_LIT>"):<EOL><INDENT>result[attr] = value.to_dict()<EOL><DEDENT>elif isinstance(value, dict):<EOL><INDENT>result[attr] = dict(map(<EOL>lambda item: (item[<NUM_LIT:0>], item[<NUM_LIT:1>].to_dict())<EOL>if hasattr(item[<NUM_LIT:1>], "<STR_LIT>") else item,<EOL>value.items()<EOL>))<EOL><DEDENT>else:<EOL><INDENT>result[attr] = value<EOL><DEDENT><DEDENT>return result<EOL>
|
Returns the model properties as a dict
|
f3074:c0:m3
|
def to_str(self):
|
return pformat(self.to_dict())<EOL>
|
Returns the string representation of the model
|
f3074:c0:m4
|
def __repr__(self):
|
return self.to_str()<EOL>
|
For `print` and `pprint`
|
f3074:c0:m5
|
def __eq__(self, other):
|
if not isinstance(other, InlineResponse400):<EOL><INDENT>return False<EOL><DEDENT>return self.__dict__ == other.__dict__<EOL>
|
Returns true if both objects are equal
|
f3074:c0:m6
|
def __ne__(self, other):
|
return not self == other<EOL>
|
Returns true if both objects are not equal
|
f3074:c0:m7
|
def __init__(self, data=None, pagination=None):
|
self.swagger_types = {<EOL>'<STR_LIT:data>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>'<EOL>}<EOL>self.attribute_map = {<EOL>'<STR_LIT:data>': '<STR_LIT:data>',<EOL>'<STR_LIT>': '<STR_LIT>'<EOL>}<EOL>self._data = data<EOL>self._pagination = pagination<EOL>
|
LastChildModelChildren - a model defined in Swagger
:param dict swaggerTypes: The key is attribute name
and the value is attribute type.
:param dict attributeMap: The key is attribute name
and the value is json key in definition.
|
f3075:c0:m0
|
@property<EOL><INDENT>def data(self):<DEDENT>
|
return self._data<EOL>
|
Gets the data of this LastChildModelChildren.
:return: The data of this LastChildModelChildren.
:rtype: list[BaseChannelModel]
|
f3075:c0:m1
|
@data.setter<EOL><INDENT>def data(self, data):<DEDENT>
|
self._data = data<EOL>
|
Sets the data of this LastChildModelChildren.
:param data: The data of this LastChildModelChildren.
:type: list[BaseChannelModel]
|
f3075:c0:m2
|
@property<EOL><INDENT>def pagination(self):<DEDENT>
|
return self._pagination<EOL>
|
Gets the pagination of this LastChildModelChildren.
:return: The pagination of this LastChildModelChildren.
:rtype: Pagination
|
f3075:c0:m3
|
@pagination.setter<EOL><INDENT>def pagination(self, pagination):<DEDENT>
|
self._pagination = pagination<EOL>
|
Sets the pagination of this LastChildModelChildren.
:param pagination: The pagination of this LastChildModelChildren.
:type: Pagination
|
f3075:c0:m4
|
def to_dict(self):
|
result = {}<EOL>for attr, _ in iteritems(self.swagger_types):<EOL><INDENT>value = getattr(self, attr)<EOL>if isinstance(value, list):<EOL><INDENT>result[attr] = list(map(<EOL>lambda x: x.to_dict() if hasattr(x, "<STR_LIT>") else x,<EOL>value<EOL>))<EOL><DEDENT>elif hasattr(value, "<STR_LIT>"):<EOL><INDENT>result[attr] = value.to_dict()<EOL><DEDENT>elif isinstance(value, dict):<EOL><INDENT>result[attr] = dict(map(<EOL>lambda item: (item[<NUM_LIT:0>], item[<NUM_LIT:1>].to_dict())<EOL>if hasattr(item[<NUM_LIT:1>], "<STR_LIT>") else item,<EOL>value.items()<EOL>))<EOL><DEDENT>else:<EOL><INDENT>result[attr] = value<EOL><DEDENT><DEDENT>return result<EOL>
|
Returns the model properties as a dict
|
f3075:c0:m5
|
def to_str(self):
|
return pformat(self.to_dict())<EOL>
|
Returns the string representation of the model
|
f3075:c0:m6
|
def __repr__(self):
|
return self.to_str()<EOL>
|
For `print` and `pprint`
|
f3075:c0:m7
|
def __eq__(self, other):
|
if not isinstance(other, LastChildModelChildren):<EOL><INDENT>return False<EOL><DEDENT>return self.__dict__ == other.__dict__<EOL>
|
Returns true if both objects are equal
|
f3075:c0:m8
|
def __ne__(self, other):
|
return not self == other<EOL>
|
Returns true if both objects are not equal
|
f3075:c0:m9
|
def __init__(self, url=None, width=None, height=None):
|
self.swagger_types = {<EOL>'<STR_LIT:url>': '<STR_LIT:str>',<EOL>'<STR_LIT:width>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>'<EOL>}<EOL>self.attribute_map = {<EOL>'<STR_LIT:url>': '<STR_LIT:url>',<EOL>'<STR_LIT:width>': '<STR_LIT:width>',<EOL>'<STR_LIT>': '<STR_LIT>'<EOL>}<EOL>self._url = url<EOL>self._width = width<EOL>self._height = height<EOL>
|
GifImagesDownsizedStill - a model defined in Swagger
:param dict swaggerTypes: The key is attribute name
and the value is attribute type.
:param dict attributeMap: The key is attribute name
and the value is json key in definition.
|
f3076:c0:m0
|
@property<EOL><INDENT>def url(self):<DEDENT>
|
return self._url<EOL>
|
Gets the url of this GifImagesDownsizedStill.
The publicly-accessible direct URL for this GIF.
:return: The url of this GifImagesDownsizedStill.
:rtype: str
|
f3076:c0:m1
|
@url.setter<EOL><INDENT>def url(self, url):<DEDENT>
|
self._url = url<EOL>
|
Sets the url of this GifImagesDownsizedStill.
The publicly-accessible direct URL for this GIF.
:param url: The url of this GifImagesDownsizedStill.
:type: str
|
f3076:c0:m2
|
@property<EOL><INDENT>def width(self):<DEDENT>
|
return self._width<EOL>
|
Gets the width of this GifImagesDownsizedStill.
The width of this GIF in pixels.
:return: The width of this GifImagesDownsizedStill.
:rtype: str
|
f3076:c0:m3
|
@width.setter<EOL><INDENT>def width(self, width):<DEDENT>
|
self._width = width<EOL>
|
Sets the width of this GifImagesDownsizedStill.
The width of this GIF in pixels.
:param width: The width of this GifImagesDownsizedStill.
:type: str
|
f3076:c0:m4
|
@property<EOL><INDENT>def height(self):<DEDENT>
|
return self._height<EOL>
|
Gets the height of this GifImagesDownsizedStill.
The height of this GIF in pixels.
:return: The height of this GifImagesDownsizedStill.
:rtype: str
|
f3076:c0:m5
|
@height.setter<EOL><INDENT>def height(self, height):<DEDENT>
|
self._height = height<EOL>
|
Sets the height of this GifImagesDownsizedStill.
The height of this GIF in pixels.
:param height: The height of this GifImagesDownsizedStill.
:type: str
|
f3076:c0:m6
|
def to_dict(self):
|
result = {}<EOL>for attr, _ in iteritems(self.swagger_types):<EOL><INDENT>value = getattr(self, attr)<EOL>if isinstance(value, list):<EOL><INDENT>result[attr] = list(map(<EOL>lambda x: x.to_dict() if hasattr(x, "<STR_LIT>") else x,<EOL>value<EOL>))<EOL><DEDENT>elif hasattr(value, "<STR_LIT>"):<EOL><INDENT>result[attr] = value.to_dict()<EOL><DEDENT>elif isinstance(value, dict):<EOL><INDENT>result[attr] = dict(map(<EOL>lambda item: (item[<NUM_LIT:0>], item[<NUM_LIT:1>].to_dict())<EOL>if hasattr(item[<NUM_LIT:1>], "<STR_LIT>") else item,<EOL>value.items()<EOL>))<EOL><DEDENT>else:<EOL><INDENT>result[attr] = value<EOL><DEDENT><DEDENT>return result<EOL>
|
Returns the model properties as a dict
|
f3076:c0:m7
|
def to_str(self):
|
return pformat(self.to_dict())<EOL>
|
Returns the string representation of the model
|
f3076:c0:m8
|
def __repr__(self):
|
return self.to_str()<EOL>
|
For `print` and `pprint`
|
f3076:c0:m9
|
def __eq__(self, other):
|
if not isinstance(other, GifImagesDownsizedStill):<EOL><INDENT>return False<EOL><DEDENT>return self.__dict__ == other.__dict__<EOL>
|
Returns true if both objects are equal
|
f3076:c0:m10
|
def __ne__(self, other):
|
return not self == other<EOL>
|
Returns true if both objects are not equal
|
f3076:c0:m11
|
def __init__(self, type='<STR_LIT>', id=None, url=None, image_original_url=None, image_url=None, image_mp4_url=None, image_frames=None, image_width=None, image_height=None, fixed_height_downsampled_url=None, fixed_height_downsampled_width=None, fixed_height_downsampled_height=None, fixed_width_downsampled_url=None, fixed_width_downsampled_width=None, fixed_width_downsampled_height=None, fixed_height_small_url=None, fixed_height_small_still_url=None, fixed_height_small_width=None, fixed_height_small_height=None, fixed_width_small_url=None, fixed_width_small_still_url=None, fixed_width_small_width=None, fixed_width_small_height=None):
|
self.swagger_types = {<EOL>'<STR_LIT:type>': '<STR_LIT:str>',<EOL>'<STR_LIT:id>': '<STR_LIT:str>',<EOL>'<STR_LIT:url>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>',<EOL>'<STR_LIT>': '<STR_LIT:str>'<EOL>}<EOL>self.attribute_map = {<EOL>'<STR_LIT:type>': '<STR_LIT:type>',<EOL>'<STR_LIT:id>': '<STR_LIT:id>',<EOL>'<STR_LIT:url>': '<STR_LIT:url>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>',<EOL>'<STR_LIT>': '<STR_LIT>'<EOL>}<EOL>self._type = type<EOL>self._id = id<EOL>self._url = url<EOL>self._image_original_url = image_original_url<EOL>self._image_url = image_url<EOL>self._image_mp4_url = image_mp4_url<EOL>self._image_frames = image_frames<EOL>self._image_width = image_width<EOL>self._image_height = image_height<EOL>self._fixed_height_downsampled_url = fixed_height_downsampled_url<EOL>self._fixed_height_downsampled_width = fixed_height_downsampled_width<EOL>self._fixed_height_downsampled_height = fixed_height_downsampled_height<EOL>self._fixed_width_downsampled_url = fixed_width_downsampled_url<EOL>self._fixed_width_downsampled_width = fixed_width_downsampled_width<EOL>self._fixed_width_downsampled_height = fixed_width_downsampled_height<EOL>self._fixed_height_small_url = fixed_height_small_url<EOL>self._fixed_height_small_still_url = fixed_height_small_still_url<EOL>self._fixed_height_small_width = fixed_height_small_width<EOL>self._fixed_height_small_height = fixed_height_small_height<EOL>self._fixed_width_small_url = fixed_width_small_url<EOL>self._fixed_width_small_still_url = fixed_width_small_still_url<EOL>self._fixed_width_small_width = fixed_width_small_width<EOL>self._fixed_width_small_height = fixed_width_small_height<EOL>
|
RandomGif - a model defined in Swagger
:param dict swaggerTypes: The key is attribute name
and the value is attribute type.
:param dict attributeMap: The key is attribute name
and the value is json key in definition.
|
f3077:c0:m0
|
@property<EOL><INDENT>def type(self):<DEDENT>
|
return self._type<EOL>
|
Gets the type of this RandomGif.
By default, this is almost always gif
:return: The type of this RandomGif.
:rtype: str
|
f3077:c0:m1
|
@type.setter<EOL><INDENT>def type(self, type):<DEDENT>
|
self._type = type<EOL>
|
Sets the type of this RandomGif.
By default, this is almost always gif
:param type: The type of this RandomGif.
:type: str
|
f3077:c0:m2
|
@property<EOL><INDENT>def id(self):<DEDENT>
|
return self._id<EOL>
|
Gets the id of this RandomGif.
This GIF's unique ID
:return: The id of this RandomGif.
:rtype: str
|
f3077:c0:m3
|
@id.setter<EOL><INDENT>def id(self, id):<DEDENT>
|
self._id = id<EOL>
|
Sets the id of this RandomGif.
This GIF's unique ID
:param id: The id of this RandomGif.
:type: str
|
f3077:c0:m4
|
@property<EOL><INDENT>def url(self):<DEDENT>
|
return self._url<EOL>
|
Gets the url of this RandomGif.
The URL for this preview GIF.
:return: The url of this RandomGif.
:rtype: str
|
f3077:c0:m5
|
@url.setter<EOL><INDENT>def url(self, url):<DEDENT>
|
self._url = url<EOL>
|
Sets the url of this RandomGif.
The URL for this preview GIF.
:param url: The url of this RandomGif.
:type: str
|
f3077:c0:m6
|
@property<EOL><INDENT>def image_original_url(self):<DEDENT>
|
return self._image_original_url<EOL>
|
Gets the image_original_url of this RandomGif.
The URL for the original preview GIF.
:return: The image_original_url of this RandomGif.
:rtype: str
|
f3077:c0:m7
|
@image_original_url.setter<EOL><INDENT>def image_original_url(self, image_original_url):<DEDENT>
|
self._image_original_url = image_original_url<EOL>
|
Sets the image_original_url of this RandomGif.
The URL for the original preview GIF.
:param image_original_url: The image_original_url of this RandomGif.
:type: str
|
f3077:c0:m8
|
@property<EOL><INDENT>def image_url(self):<DEDENT>
|
return self._image_url<EOL>
|
Gets the image_url of this RandomGif.
The URL for this preview GIF.
:return: The image_url of this RandomGif.
:rtype: str
|
f3077:c0:m9
|
@image_url.setter<EOL><INDENT>def image_url(self, image_url):<DEDENT>
|
self._image_url = image_url<EOL>
|
Sets the image_url of this RandomGif.
The URL for this preview GIF.
:param image_url: The image_url of this RandomGif.
:type: str
|
f3077:c0:m10
|
@property<EOL><INDENT>def image_mp4_url(self):<DEDENT>
|
return self._image_mp4_url<EOL>
|
Gets the image_mp4_url of this RandomGif.
The URL for this preview GIF.
:return: The image_mp4_url of this RandomGif.
:rtype: str
|
f3077:c0:m11
|
@image_mp4_url.setter<EOL><INDENT>def image_mp4_url(self, image_mp4_url):<DEDENT>
|
self._image_mp4_url = image_mp4_url<EOL>
|
Sets the image_mp4_url of this RandomGif.
The URL for this preview GIF.
:param image_mp4_url: The image_mp4_url of this RandomGif.
:type: str
|
f3077:c0:m12
|
@property<EOL><INDENT>def image_frames(self):<DEDENT>
|
return self._image_frames<EOL>
|
Gets the image_frames of this RandomGif.
The number of frames in this GIF.
:return: The image_frames of this RandomGif.
:rtype: str
|
f3077:c0:m13
|
@image_frames.setter<EOL><INDENT>def image_frames(self, image_frames):<DEDENT>
|
self._image_frames = image_frames<EOL>
|
Sets the image_frames of this RandomGif.
The number of frames in this GIF.
:param image_frames: The image_frames of this RandomGif.
:type: str
|
f3077:c0:m14
|
@property<EOL><INDENT>def image_width(self):<DEDENT>
|
return self._image_width<EOL>
|
Gets the image_width of this RandomGif.
The width of this GIF.
:return: The image_width of this RandomGif.
:rtype: str
|
f3077:c0:m15
|
@image_width.setter<EOL><INDENT>def image_width(self, image_width):<DEDENT>
|
self._image_width = image_width<EOL>
|
Sets the image_width of this RandomGif.
The width of this GIF.
:param image_width: The image_width of this RandomGif.
:type: str
|
f3077:c0:m16
|
@property<EOL><INDENT>def image_height(self):<DEDENT>
|
return self._image_height<EOL>
|
Gets the image_height of this RandomGif.
The height of this GIF.
:return: The image_height of this RandomGif.
:rtype: str
|
f3077:c0:m17
|
@image_height.setter<EOL><INDENT>def image_height(self, image_height):<DEDENT>
|
self._image_height = image_height<EOL>
|
Sets the image_height of this RandomGif.
The height of this GIF.
:param image_height: The image_height of this RandomGif.
:type: str
|
f3077:c0:m18
|
@property<EOL><INDENT>def fixed_height_downsampled_url(self):<DEDENT>
|
return self._fixed_height_downsampled_url<EOL>
|
Gets the fixed_height_downsampled_url of this RandomGif.
A version of this GIF with a fixed height of 200 pixels and the number of frames reduced to 6.
:return: The fixed_height_downsampled_url of this RandomGif.
:rtype: str
|
f3077:c0:m19
|
@fixed_height_downsampled_url.setter<EOL><INDENT>def fixed_height_downsampled_url(self, fixed_height_downsampled_url):<DEDENT>
|
self._fixed_height_downsampled_url = fixed_height_downsampled_url<EOL>
|
Sets the fixed_height_downsampled_url of this RandomGif.
A version of this GIF with a fixed height of 200 pixels and the number of frames reduced to 6.
:param fixed_height_downsampled_url: The fixed_height_downsampled_url of this RandomGif.
:type: str
|
f3077:c0:m20
|
@property<EOL><INDENT>def fixed_height_downsampled_width(self):<DEDENT>
|
return self._fixed_height_downsampled_width<EOL>
|
Gets the fixed_height_downsampled_width of this RandomGif.
:return: The fixed_height_downsampled_width of this RandomGif.
:rtype: str
|
f3077:c0:m21
|
@fixed_height_downsampled_width.setter<EOL><INDENT>def fixed_height_downsampled_width(self, fixed_height_downsampled_width):<DEDENT>
|
self._fixed_height_downsampled_width = fixed_height_downsampled_width<EOL>
|
Sets the fixed_height_downsampled_width of this RandomGif.
:param fixed_height_downsampled_width: The fixed_height_downsampled_width of this RandomGif.
:type: str
|
f3077:c0:m22
|
@property<EOL><INDENT>def fixed_height_downsampled_height(self):<DEDENT>
|
return self._fixed_height_downsampled_height<EOL>
|
Gets the fixed_height_downsampled_height of this RandomGif.
:return: The fixed_height_downsampled_height of this RandomGif.
:rtype: str
|
f3077:c0:m23
|
@fixed_height_downsampled_height.setter<EOL><INDENT>def fixed_height_downsampled_height(self, fixed_height_downsampled_height):<DEDENT>
|
self._fixed_height_downsampled_height = fixed_height_downsampled_height<EOL>
|
Sets the fixed_height_downsampled_height of this RandomGif.
:param fixed_height_downsampled_height: The fixed_height_downsampled_height of this RandomGif.
:type: str
|
f3077:c0:m24
|
@property<EOL><INDENT>def fixed_width_downsampled_url(self):<DEDENT>
|
return self._fixed_width_downsampled_url<EOL>
|
Gets the fixed_width_downsampled_url of this RandomGif.
A version of this GIF with a fixed width of 200 pixels and the number of frames reduced to 6.
:return: The fixed_width_downsampled_url of this RandomGif.
:rtype: str
|
f3077:c0:m25
|
@fixed_width_downsampled_url.setter<EOL><INDENT>def fixed_width_downsampled_url(self, fixed_width_downsampled_url):<DEDENT>
|
self._fixed_width_downsampled_url = fixed_width_downsampled_url<EOL>
|
Sets the fixed_width_downsampled_url of this RandomGif.
A version of this GIF with a fixed width of 200 pixels and the number of frames reduced to 6.
:param fixed_width_downsampled_url: The fixed_width_downsampled_url of this RandomGif.
:type: str
|
f3077:c0:m26
|
@property<EOL><INDENT>def fixed_width_downsampled_width(self):<DEDENT>
|
return self._fixed_width_downsampled_width<EOL>
|
Gets the fixed_width_downsampled_width of this RandomGif.
:return: The fixed_width_downsampled_width of this RandomGif.
:rtype: str
|
f3077:c0:m27
|
@fixed_width_downsampled_width.setter<EOL><INDENT>def fixed_width_downsampled_width(self, fixed_width_downsampled_width):<DEDENT>
|
self._fixed_width_downsampled_width = fixed_width_downsampled_width<EOL>
|
Sets the fixed_width_downsampled_width of this RandomGif.
:param fixed_width_downsampled_width: The fixed_width_downsampled_width of this RandomGif.
:type: str
|
f3077:c0:m28
|
@property<EOL><INDENT>def fixed_width_downsampled_height(self):<DEDENT>
|
return self._fixed_width_downsampled_height<EOL>
|
Gets the fixed_width_downsampled_height of this RandomGif.
:return: The fixed_width_downsampled_height of this RandomGif.
:rtype: str
|
f3077:c0:m29
|
@fixed_width_downsampled_height.setter<EOL><INDENT>def fixed_width_downsampled_height(self, fixed_width_downsampled_height):<DEDENT>
|
self._fixed_width_downsampled_height = fixed_width_downsampled_height<EOL>
|
Sets the fixed_width_downsampled_height of this RandomGif.
:param fixed_width_downsampled_height: The fixed_width_downsampled_height of this RandomGif.
:type: str
|
f3077:c0:m30
|
@property<EOL><INDENT>def fixed_height_small_url(self):<DEDENT>
|
return self._fixed_height_small_url<EOL>
|
Gets the fixed_height_small_url of this RandomGif.
A version of this GIF with a fixed height of 100 pixels and the number of frames reduced to 6.
:return: The fixed_height_small_url of this RandomGif.
:rtype: str
|
f3077:c0:m31
|
@fixed_height_small_url.setter<EOL><INDENT>def fixed_height_small_url(self, fixed_height_small_url):<DEDENT>
|
self._fixed_height_small_url = fixed_height_small_url<EOL>
|
Sets the fixed_height_small_url of this RandomGif.
A version of this GIF with a fixed height of 100 pixels and the number of frames reduced to 6.
:param fixed_height_small_url: The fixed_height_small_url of this RandomGif.
:type: str
|
f3077:c0:m32
|
@property<EOL><INDENT>def fixed_height_small_still_url(self):<DEDENT>
|
return self._fixed_height_small_still_url<EOL>
|
Gets the fixed_height_small_still_url of this RandomGif.
A still version of this gif.
:return: The fixed_height_small_still_url of this RandomGif.
:rtype: str
|
f3077:c0:m33
|
@fixed_height_small_still_url.setter<EOL><INDENT>def fixed_height_small_still_url(self, fixed_height_small_still_url):<DEDENT>
|
self._fixed_height_small_still_url = fixed_height_small_still_url<EOL>
|
Sets the fixed_height_small_still_url of this RandomGif.
A still version of this gif.
:param fixed_height_small_still_url: The fixed_height_small_still_url of this RandomGif.
:type: str
|
f3077:c0:m34
|
@property<EOL><INDENT>def fixed_height_small_width(self):<DEDENT>
|
return self._fixed_height_small_width<EOL>
|
Gets the fixed_height_small_width of this RandomGif.
:return: The fixed_height_small_width of this RandomGif.
:rtype: str
|
f3077:c0:m35
|
@fixed_height_small_width.setter<EOL><INDENT>def fixed_height_small_width(self, fixed_height_small_width):<DEDENT>
|
self._fixed_height_small_width = fixed_height_small_width<EOL>
|
Sets the fixed_height_small_width of this RandomGif.
:param fixed_height_small_width: The fixed_height_small_width of this RandomGif.
:type: str
|
f3077:c0:m36
|
@property<EOL><INDENT>def fixed_height_small_height(self):<DEDENT>
|
return self._fixed_height_small_height<EOL>
|
Gets the fixed_height_small_height of this RandomGif.
:return: The fixed_height_small_height of this RandomGif.
:rtype: str
|
f3077:c0:m37
|
@fixed_height_small_height.setter<EOL><INDENT>def fixed_height_small_height(self, fixed_height_small_height):<DEDENT>
|
self._fixed_height_small_height = fixed_height_small_height<EOL>
|
Sets the fixed_height_small_height of this RandomGif.
:param fixed_height_small_height: The fixed_height_small_height of this RandomGif.
:type: str
|
f3077:c0:m38
|
@property<EOL><INDENT>def fixed_width_small_url(self):<DEDENT>
|
return self._fixed_width_small_url<EOL>
|
Gets the fixed_width_small_url of this RandomGif.
:return: The fixed_width_small_url of this RandomGif.
:rtype: str
|
f3077:c0:m39
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.