Module presalytics.client.presalytics_ooxml_automation.models.document_details

OOXML Automation

This API helps users convert Excel and Powerpoint documents into rich, live dashboards and stories. # noqa: E501

The version of the OpenAPI document: 0.1.0-no-tags Generated by: https://openapi-generator.tech

Expand source code Browse git
# coding: utf-8

"""
    OOXML Automation

    This API helps users convert Excel and Powerpoint documents into rich, live dashboards and stories.  # noqa: E501

    The version of the OpenAPI document: 0.1.0-no-tags
    Generated by: https://openapi-generator.tech
"""


import pprint
import re  # noqa: F401

import six


class DocumentDetails(object):
    """NOTE: This class is auto generated by OpenAPI Generator.
    Ref: https://openapi-generator.tech

    Do not edit the class manually.
    """

    """
    Attributes:
      openapi_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    openapi_types = {
        'story_id': 'str',
        'filename': 'str',
        'owner_guid': 'str',
        'document_type_id': 'int',
        'blob_location': 'str',
        'table_styles_xml_blob_url': 'str',
        'title': 'str',
        'slides': 'list[SlideSlidesDetails]',
        'base_element_blob_url': 'str',
        'changed_base_element_blob_url': 'str',
        'package_uri': 'str',
        'name': 'str',
        'id': 'str',
        'date_created': 'datetime',
        'user_created': 'str',
        'date_modified': 'datetime',
        'user_modified': 'str'
    }

    attribute_map = {
        'story_id': 'storyId',
        'filename': 'filename',
        'owner_guid': 'ownerGuid',
        'document_type_id': 'documentTypeId',
        'blob_location': 'blobLocation',
        'table_styles_xml_blob_url': 'tableStylesXmlBlobUrl',
        'title': 'title',
        'slides': 'slides',
        'base_element_blob_url': 'baseElementBlobUrl',
        'changed_base_element_blob_url': 'changedBaseElementBlobUrl',
        'package_uri': 'packageUri',
        'name': 'name',
        'id': 'id',
        'date_created': 'dateCreated',
        'user_created': 'userCreated',
        'date_modified': 'dateModified',
        'user_modified': 'userModified'
    }

    def __init__(self, story_id=None, filename=None, owner_guid=None, document_type_id=None, blob_location=None, table_styles_xml_blob_url=None, title=None, slides=None, base_element_blob_url=None, changed_base_element_blob_url=None, package_uri=None, name=None, id=None, date_created=None, user_created=None, date_modified=None, user_modified=None):  # noqa: E501
        """DocumentDetails - a model defined in OpenAPI"""  # noqa: E501

        self._story_id = None
        self._filename = None
        self._owner_guid = None
        self._document_type_id = None
        self._blob_location = None
        self._table_styles_xml_blob_url = None
        self._title = None
        self._slides = None
        self._base_element_blob_url = None
        self._changed_base_element_blob_url = None
        self._package_uri = None
        self._name = None
        self._id = None
        self._date_created = None
        self._user_created = None
        self._date_modified = None
        self._user_modified = None
        self.discriminator = None

        if story_id is not None:
            self.story_id = story_id
        self.filename = filename
        if owner_guid is not None:
            self.owner_guid = owner_guid
        if document_type_id is not None:
            self.document_type_id = document_type_id
        self.blob_location = blob_location
        self.table_styles_xml_blob_url = table_styles_xml_blob_url
        self.title = title
        self.slides = slides
        self.base_element_blob_url = base_element_blob_url
        self.changed_base_element_blob_url = changed_base_element_blob_url
        self.package_uri = package_uri
        self.name = name
        if id is not None:
            self.id = id
        if date_created is not None:
            self.date_created = date_created
        if user_created is not None:
            self.user_created = user_created
        if date_modified is not None:
            self.date_modified = date_modified
        if user_modified is not None:
            self.user_modified = user_modified

    @property
    def story_id(self):
        """Gets the story_id of this DocumentDetails.  # noqa: E501


        :return: The story_id of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._story_id

    @story_id.setter
    def story_id(self, story_id):
        """Sets the story_id of this DocumentDetails.


        :param story_id: The story_id of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._story_id = story_id

    @property
    def filename(self):
        """Gets the filename of this DocumentDetails.  # noqa: E501


        :return: The filename of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._filename

    @filename.setter
    def filename(self, filename):
        """Sets the filename of this DocumentDetails.


        :param filename: The filename of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._filename = filename

    @property
    def owner_guid(self):
        """Gets the owner_guid of this DocumentDetails.  # noqa: E501


        :return: The owner_guid of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._owner_guid

    @owner_guid.setter
    def owner_guid(self, owner_guid):
        """Sets the owner_guid of this DocumentDetails.


        :param owner_guid: The owner_guid of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._owner_guid = owner_guid

    @property
    def document_type_id(self):
        """Gets the document_type_id of this DocumentDetails.  # noqa: E501


        :return: The document_type_id of this DocumentDetails.  # noqa: E501
        :rtype: int
        """
        return self._document_type_id

    @document_type_id.setter
    def document_type_id(self, document_type_id):
        """Sets the document_type_id of this DocumentDetails.


        :param document_type_id: The document_type_id of this DocumentDetails.  # noqa: E501
        :type: int
        """

        self._document_type_id = document_type_id

    @property
    def blob_location(self):
        """Gets the blob_location of this DocumentDetails.  # noqa: E501


        :return: The blob_location of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._blob_location

    @blob_location.setter
    def blob_location(self, blob_location):
        """Sets the blob_location of this DocumentDetails.


        :param blob_location: The blob_location of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._blob_location = blob_location

    @property
    def table_styles_xml_blob_url(self):
        """Gets the table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501


        :return: The table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._table_styles_xml_blob_url

    @table_styles_xml_blob_url.setter
    def table_styles_xml_blob_url(self, table_styles_xml_blob_url):
        """Sets the table_styles_xml_blob_url of this DocumentDetails.


        :param table_styles_xml_blob_url: The table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._table_styles_xml_blob_url = table_styles_xml_blob_url

    @property
    def title(self):
        """Gets the title of this DocumentDetails.  # noqa: E501


        :return: The title of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._title

    @title.setter
    def title(self, title):
        """Sets the title of this DocumentDetails.


        :param title: The title of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._title = title

    @property
    def slides(self):
        """Gets the slides of this DocumentDetails.  # noqa: E501


        :return: The slides of this DocumentDetails.  # noqa: E501
        :rtype: list[SlideSlidesDetails]
        """
        return self._slides

    @slides.setter
    def slides(self, slides):
        """Sets the slides of this DocumentDetails.


        :param slides: The slides of this DocumentDetails.  # noqa: E501
        :type: list[SlideSlidesDetails]
        """

        self._slides = slides

    @property
    def base_element_blob_url(self):
        """Gets the base_element_blob_url of this DocumentDetails.  # noqa: E501


        :return: The base_element_blob_url of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._base_element_blob_url

    @base_element_blob_url.setter
    def base_element_blob_url(self, base_element_blob_url):
        """Sets the base_element_blob_url of this DocumentDetails.


        :param base_element_blob_url: The base_element_blob_url of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._base_element_blob_url = base_element_blob_url

    @property
    def changed_base_element_blob_url(self):
        """Gets the changed_base_element_blob_url of this DocumentDetails.  # noqa: E501


        :return: The changed_base_element_blob_url of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._changed_base_element_blob_url

    @changed_base_element_blob_url.setter
    def changed_base_element_blob_url(self, changed_base_element_blob_url):
        """Sets the changed_base_element_blob_url of this DocumentDetails.


        :param changed_base_element_blob_url: The changed_base_element_blob_url of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._changed_base_element_blob_url = changed_base_element_blob_url

    @property
    def package_uri(self):
        """Gets the package_uri of this DocumentDetails.  # noqa: E501


        :return: The package_uri of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._package_uri

    @package_uri.setter
    def package_uri(self, package_uri):
        """Sets the package_uri of this DocumentDetails.


        :param package_uri: The package_uri of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._package_uri = package_uri

    @property
    def name(self):
        """Gets the name of this DocumentDetails.  # noqa: E501


        :return: The name of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """Sets the name of this DocumentDetails.


        :param name: The name of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._name = name

    @property
    def id(self):
        """Gets the id of this DocumentDetails.  # noqa: E501


        :return: The id of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._id

    @id.setter
    def id(self, id):
        """Sets the id of this DocumentDetails.


        :param id: The id of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._id = id

    @property
    def date_created(self):
        """Gets the date_created of this DocumentDetails.  # noqa: E501


        :return: The date_created of this DocumentDetails.  # noqa: E501
        :rtype: datetime
        """
        return self._date_created

    @date_created.setter
    def date_created(self, date_created):
        """Sets the date_created of this DocumentDetails.


        :param date_created: The date_created of this DocumentDetails.  # noqa: E501
        :type: datetime
        """

        self._date_created = date_created

    @property
    def user_created(self):
        """Gets the user_created of this DocumentDetails.  # noqa: E501


        :return: The user_created of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._user_created

    @user_created.setter
    def user_created(self, user_created):
        """Sets the user_created of this DocumentDetails.


        :param user_created: The user_created of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._user_created = user_created

    @property
    def date_modified(self):
        """Gets the date_modified of this DocumentDetails.  # noqa: E501


        :return: The date_modified of this DocumentDetails.  # noqa: E501
        :rtype: datetime
        """
        return self._date_modified

    @date_modified.setter
    def date_modified(self, date_modified):
        """Sets the date_modified of this DocumentDetails.


        :param date_modified: The date_modified of this DocumentDetails.  # noqa: E501
        :type: datetime
        """

        self._date_modified = date_modified

    @property
    def user_modified(self):
        """Gets the user_modified of this DocumentDetails.  # noqa: E501


        :return: The user_modified of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._user_modified

    @user_modified.setter
    def user_modified(self, user_modified):
        """Sets the user_modified of this DocumentDetails.


        :param user_modified: The user_modified of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._user_modified = user_modified

    def to_dict(self):
        """Returns the model properties as a dict"""
        result = {}

        for attr, _ in six.iteritems(self.openapi_types):
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value

        return result

    def to_str(self):
        """Returns the string representation of the model"""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`"""
        return self.to_str()

    def __eq__(self, other):
        """Returns true if both objects are equal"""
        if not isinstance(other, DocumentDetails):
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        """Returns true if both objects are not equal"""
        return not self == other

Classes

class DocumentDetails (story_id=None, filename=None, owner_guid=None, document_type_id=None, blob_location=None, table_styles_xml_blob_url=None, title=None, slides=None, base_element_blob_url=None, changed_base_element_blob_url=None, package_uri=None, name=None, id=None, date_created=None, user_created=None, date_modified=None, user_modified=None)

NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech

Do not edit the class manually.

DocumentDetails - a model defined in OpenAPI

Expand source code Browse git
class DocumentDetails(object):
    """NOTE: This class is auto generated by OpenAPI Generator.
    Ref: https://openapi-generator.tech

    Do not edit the class manually.
    """

    """
    Attributes:
      openapi_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    openapi_types = {
        'story_id': 'str',
        'filename': 'str',
        'owner_guid': 'str',
        'document_type_id': 'int',
        'blob_location': 'str',
        'table_styles_xml_blob_url': 'str',
        'title': 'str',
        'slides': 'list[SlideSlidesDetails]',
        'base_element_blob_url': 'str',
        'changed_base_element_blob_url': 'str',
        'package_uri': 'str',
        'name': 'str',
        'id': 'str',
        'date_created': 'datetime',
        'user_created': 'str',
        'date_modified': 'datetime',
        'user_modified': 'str'
    }

    attribute_map = {
        'story_id': 'storyId',
        'filename': 'filename',
        'owner_guid': 'ownerGuid',
        'document_type_id': 'documentTypeId',
        'blob_location': 'blobLocation',
        'table_styles_xml_blob_url': 'tableStylesXmlBlobUrl',
        'title': 'title',
        'slides': 'slides',
        'base_element_blob_url': 'baseElementBlobUrl',
        'changed_base_element_blob_url': 'changedBaseElementBlobUrl',
        'package_uri': 'packageUri',
        'name': 'name',
        'id': 'id',
        'date_created': 'dateCreated',
        'user_created': 'userCreated',
        'date_modified': 'dateModified',
        'user_modified': 'userModified'
    }

    def __init__(self, story_id=None, filename=None, owner_guid=None, document_type_id=None, blob_location=None, table_styles_xml_blob_url=None, title=None, slides=None, base_element_blob_url=None, changed_base_element_blob_url=None, package_uri=None, name=None, id=None, date_created=None, user_created=None, date_modified=None, user_modified=None):  # noqa: E501
        """DocumentDetails - a model defined in OpenAPI"""  # noqa: E501

        self._story_id = None
        self._filename = None
        self._owner_guid = None
        self._document_type_id = None
        self._blob_location = None
        self._table_styles_xml_blob_url = None
        self._title = None
        self._slides = None
        self._base_element_blob_url = None
        self._changed_base_element_blob_url = None
        self._package_uri = None
        self._name = None
        self._id = None
        self._date_created = None
        self._user_created = None
        self._date_modified = None
        self._user_modified = None
        self.discriminator = None

        if story_id is not None:
            self.story_id = story_id
        self.filename = filename
        if owner_guid is not None:
            self.owner_guid = owner_guid
        if document_type_id is not None:
            self.document_type_id = document_type_id
        self.blob_location = blob_location
        self.table_styles_xml_blob_url = table_styles_xml_blob_url
        self.title = title
        self.slides = slides
        self.base_element_blob_url = base_element_blob_url
        self.changed_base_element_blob_url = changed_base_element_blob_url
        self.package_uri = package_uri
        self.name = name
        if id is not None:
            self.id = id
        if date_created is not None:
            self.date_created = date_created
        if user_created is not None:
            self.user_created = user_created
        if date_modified is not None:
            self.date_modified = date_modified
        if user_modified is not None:
            self.user_modified = user_modified

    @property
    def story_id(self):
        """Gets the story_id of this DocumentDetails.  # noqa: E501


        :return: The story_id of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._story_id

    @story_id.setter
    def story_id(self, story_id):
        """Sets the story_id of this DocumentDetails.


        :param story_id: The story_id of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._story_id = story_id

    @property
    def filename(self):
        """Gets the filename of this DocumentDetails.  # noqa: E501


        :return: The filename of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._filename

    @filename.setter
    def filename(self, filename):
        """Sets the filename of this DocumentDetails.


        :param filename: The filename of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._filename = filename

    @property
    def owner_guid(self):
        """Gets the owner_guid of this DocumentDetails.  # noqa: E501


        :return: The owner_guid of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._owner_guid

    @owner_guid.setter
    def owner_guid(self, owner_guid):
        """Sets the owner_guid of this DocumentDetails.


        :param owner_guid: The owner_guid of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._owner_guid = owner_guid

    @property
    def document_type_id(self):
        """Gets the document_type_id of this DocumentDetails.  # noqa: E501


        :return: The document_type_id of this DocumentDetails.  # noqa: E501
        :rtype: int
        """
        return self._document_type_id

    @document_type_id.setter
    def document_type_id(self, document_type_id):
        """Sets the document_type_id of this DocumentDetails.


        :param document_type_id: The document_type_id of this DocumentDetails.  # noqa: E501
        :type: int
        """

        self._document_type_id = document_type_id

    @property
    def blob_location(self):
        """Gets the blob_location of this DocumentDetails.  # noqa: E501


        :return: The blob_location of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._blob_location

    @blob_location.setter
    def blob_location(self, blob_location):
        """Sets the blob_location of this DocumentDetails.


        :param blob_location: The blob_location of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._blob_location = blob_location

    @property
    def table_styles_xml_blob_url(self):
        """Gets the table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501


        :return: The table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._table_styles_xml_blob_url

    @table_styles_xml_blob_url.setter
    def table_styles_xml_blob_url(self, table_styles_xml_blob_url):
        """Sets the table_styles_xml_blob_url of this DocumentDetails.


        :param table_styles_xml_blob_url: The table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._table_styles_xml_blob_url = table_styles_xml_blob_url

    @property
    def title(self):
        """Gets the title of this DocumentDetails.  # noqa: E501


        :return: The title of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._title

    @title.setter
    def title(self, title):
        """Sets the title of this DocumentDetails.


        :param title: The title of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._title = title

    @property
    def slides(self):
        """Gets the slides of this DocumentDetails.  # noqa: E501


        :return: The slides of this DocumentDetails.  # noqa: E501
        :rtype: list[SlideSlidesDetails]
        """
        return self._slides

    @slides.setter
    def slides(self, slides):
        """Sets the slides of this DocumentDetails.


        :param slides: The slides of this DocumentDetails.  # noqa: E501
        :type: list[SlideSlidesDetails]
        """

        self._slides = slides

    @property
    def base_element_blob_url(self):
        """Gets the base_element_blob_url of this DocumentDetails.  # noqa: E501


        :return: The base_element_blob_url of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._base_element_blob_url

    @base_element_blob_url.setter
    def base_element_blob_url(self, base_element_blob_url):
        """Sets the base_element_blob_url of this DocumentDetails.


        :param base_element_blob_url: The base_element_blob_url of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._base_element_blob_url = base_element_blob_url

    @property
    def changed_base_element_blob_url(self):
        """Gets the changed_base_element_blob_url of this DocumentDetails.  # noqa: E501


        :return: The changed_base_element_blob_url of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._changed_base_element_blob_url

    @changed_base_element_blob_url.setter
    def changed_base_element_blob_url(self, changed_base_element_blob_url):
        """Sets the changed_base_element_blob_url of this DocumentDetails.


        :param changed_base_element_blob_url: The changed_base_element_blob_url of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._changed_base_element_blob_url = changed_base_element_blob_url

    @property
    def package_uri(self):
        """Gets the package_uri of this DocumentDetails.  # noqa: E501


        :return: The package_uri of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._package_uri

    @package_uri.setter
    def package_uri(self, package_uri):
        """Sets the package_uri of this DocumentDetails.


        :param package_uri: The package_uri of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._package_uri = package_uri

    @property
    def name(self):
        """Gets the name of this DocumentDetails.  # noqa: E501


        :return: The name of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """Sets the name of this DocumentDetails.


        :param name: The name of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._name = name

    @property
    def id(self):
        """Gets the id of this DocumentDetails.  # noqa: E501


        :return: The id of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._id

    @id.setter
    def id(self, id):
        """Sets the id of this DocumentDetails.


        :param id: The id of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._id = id

    @property
    def date_created(self):
        """Gets the date_created of this DocumentDetails.  # noqa: E501


        :return: The date_created of this DocumentDetails.  # noqa: E501
        :rtype: datetime
        """
        return self._date_created

    @date_created.setter
    def date_created(self, date_created):
        """Sets the date_created of this DocumentDetails.


        :param date_created: The date_created of this DocumentDetails.  # noqa: E501
        :type: datetime
        """

        self._date_created = date_created

    @property
    def user_created(self):
        """Gets the user_created of this DocumentDetails.  # noqa: E501


        :return: The user_created of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._user_created

    @user_created.setter
    def user_created(self, user_created):
        """Sets the user_created of this DocumentDetails.


        :param user_created: The user_created of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._user_created = user_created

    @property
    def date_modified(self):
        """Gets the date_modified of this DocumentDetails.  # noqa: E501


        :return: The date_modified of this DocumentDetails.  # noqa: E501
        :rtype: datetime
        """
        return self._date_modified

    @date_modified.setter
    def date_modified(self, date_modified):
        """Sets the date_modified of this DocumentDetails.


        :param date_modified: The date_modified of this DocumentDetails.  # noqa: E501
        :type: datetime
        """

        self._date_modified = date_modified

    @property
    def user_modified(self):
        """Gets the user_modified of this DocumentDetails.  # noqa: E501


        :return: The user_modified of this DocumentDetails.  # noqa: E501
        :rtype: str
        """
        return self._user_modified

    @user_modified.setter
    def user_modified(self, user_modified):
        """Sets the user_modified of this DocumentDetails.


        :param user_modified: The user_modified of this DocumentDetails.  # noqa: E501
        :type: str
        """

        self._user_modified = user_modified

    def to_dict(self):
        """Returns the model properties as a dict"""
        result = {}

        for attr, _ in six.iteritems(self.openapi_types):
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value

        return result

    def to_str(self):
        """Returns the string representation of the model"""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`"""
        return self.to_str()

    def __eq__(self, other):
        """Returns true if both objects are equal"""
        if not isinstance(other, DocumentDetails):
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        """Returns true if both objects are not equal"""
        return not self == other

Class variables

var openapi_types

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)

var attribute_map

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)

Instance variables

var story_id

Gets the story_id of this DocumentDetails. # noqa: E501

:return: The story_id of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def story_id(self):
    """Gets the story_id of this DocumentDetails.  # noqa: E501


    :return: The story_id of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._story_id
var filename

Gets the filename of this DocumentDetails. # noqa: E501

:return: The filename of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def filename(self):
    """Gets the filename of this DocumentDetails.  # noqa: E501


    :return: The filename of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._filename
var owner_guid

Gets the owner_guid of this DocumentDetails. # noqa: E501

:return: The owner_guid of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def owner_guid(self):
    """Gets the owner_guid of this DocumentDetails.  # noqa: E501


    :return: The owner_guid of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._owner_guid
var document_type_id

Gets the document_type_id of this DocumentDetails. # noqa: E501

:return: The document_type_id of this DocumentDetails. # noqa: E501 :rtype: int

Expand source code Browse git
@property
def document_type_id(self):
    """Gets the document_type_id of this DocumentDetails.  # noqa: E501


    :return: The document_type_id of this DocumentDetails.  # noqa: E501
    :rtype: int
    """
    return self._document_type_id
var blob_location

Gets the blob_location of this DocumentDetails. # noqa: E501

:return: The blob_location of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def blob_location(self):
    """Gets the blob_location of this DocumentDetails.  # noqa: E501


    :return: The blob_location of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._blob_location
var table_styles_xml_blob_url

Gets the table_styles_xml_blob_url of this DocumentDetails. # noqa: E501

:return: The table_styles_xml_blob_url of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def table_styles_xml_blob_url(self):
    """Gets the table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501


    :return: The table_styles_xml_blob_url of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._table_styles_xml_blob_url
var title

Gets the title of this DocumentDetails. # noqa: E501

:return: The title of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def title(self):
    """Gets the title of this DocumentDetails.  # noqa: E501


    :return: The title of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._title
var slides

Gets the slides of this DocumentDetails. # noqa: E501

:return: The slides of this DocumentDetails. # noqa: E501 :rtype: list[SlideSlidesDetails]

Expand source code Browse git
@property
def slides(self):
    """Gets the slides of this DocumentDetails.  # noqa: E501


    :return: The slides of this DocumentDetails.  # noqa: E501
    :rtype: list[SlideSlidesDetails]
    """
    return self._slides
var base_element_blob_url

Gets the base_element_blob_url of this DocumentDetails. # noqa: E501

:return: The base_element_blob_url of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def base_element_blob_url(self):
    """Gets the base_element_blob_url of this DocumentDetails.  # noqa: E501


    :return: The base_element_blob_url of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._base_element_blob_url
var changed_base_element_blob_url

Gets the changed_base_element_blob_url of this DocumentDetails. # noqa: E501

:return: The changed_base_element_blob_url of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def changed_base_element_blob_url(self):
    """Gets the changed_base_element_blob_url of this DocumentDetails.  # noqa: E501


    :return: The changed_base_element_blob_url of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._changed_base_element_blob_url
var package_uri

Gets the package_uri of this DocumentDetails. # noqa: E501

:return: The package_uri of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def package_uri(self):
    """Gets the package_uri of this DocumentDetails.  # noqa: E501


    :return: The package_uri of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._package_uri
var name

Gets the name of this DocumentDetails. # noqa: E501

:return: The name of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def name(self):
    """Gets the name of this DocumentDetails.  # noqa: E501


    :return: The name of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._name
var id

Gets the id of this DocumentDetails. # noqa: E501

:return: The id of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def id(self):
    """Gets the id of this DocumentDetails.  # noqa: E501


    :return: The id of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._id
var date_created

Gets the date_created of this DocumentDetails. # noqa: E501

:return: The date_created of this DocumentDetails. # noqa: E501 :rtype: datetime

Expand source code Browse git
@property
def date_created(self):
    """Gets the date_created of this DocumentDetails.  # noqa: E501


    :return: The date_created of this DocumentDetails.  # noqa: E501
    :rtype: datetime
    """
    return self._date_created
var user_created

Gets the user_created of this DocumentDetails. # noqa: E501

:return: The user_created of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def user_created(self):
    """Gets the user_created of this DocumentDetails.  # noqa: E501


    :return: The user_created of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._user_created
var date_modified

Gets the date_modified of this DocumentDetails. # noqa: E501

:return: The date_modified of this DocumentDetails. # noqa: E501 :rtype: datetime

Expand source code Browse git
@property
def date_modified(self):
    """Gets the date_modified of this DocumentDetails.  # noqa: E501


    :return: The date_modified of this DocumentDetails.  # noqa: E501
    :rtype: datetime
    """
    return self._date_modified
var user_modified

Gets the user_modified of this DocumentDetails. # noqa: E501

:return: The user_modified of this DocumentDetails. # noqa: E501 :rtype: str

Expand source code Browse git
@property
def user_modified(self):
    """Gets the user_modified of this DocumentDetails.  # noqa: E501


    :return: The user_modified of this DocumentDetails.  # noqa: E501
    :rtype: str
    """
    return self._user_modified

Methods

def to_dict(self)

Returns the model properties as a dict

Expand source code Browse git
def to_dict(self):
    """Returns the model properties as a dict"""
    result = {}

    for attr, _ in six.iteritems(self.openapi_types):
        value = getattr(self, attr)
        if isinstance(value, list):
            result[attr] = list(map(
                lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                value
            ))
        elif hasattr(value, "to_dict"):
            result[attr] = value.to_dict()
        elif isinstance(value, dict):
            result[attr] = dict(map(
                lambda item: (item[0], item[1].to_dict())
                if hasattr(item[1], "to_dict") else item,
                value.items()
            ))
        else:
            result[attr] = value

    return result
def to_str(self)

Returns the string representation of the model

Expand source code Browse git
def to_str(self):
    """Returns the string representation of the model"""
    return pprint.pformat(self.to_dict())