Module presalytics.client.presalytics_story.models.ooxml_document

Story

This API is the main entry point for creating, editing and publishing analytics throught the Presalytics API # noqa: E501

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

Expand source code Browse git
# coding: utf-8

"""
    Story

    This API is the main entry point for creating, editing and publishing analytics throught the Presalytics API  # noqa: E501

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


import pprint
import re  # noqa: F401

import six


class OoxmlDocument(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 = {
        'created_at': 'datetime',
        'created_by': 'str',
        'id': 'str',
        'updated_at': 'datetime',
        'updated_by': 'str',
        'delete_target_on_story_delete': 'bool',
        'ooxml_automation_id': 'str',
        'story_id': 'str'
    }

    attribute_map = {
        'created_at': 'created_at',
        'created_by': 'created_by',
        'id': 'id',
        'updated_at': 'updated_at',
        'updated_by': 'updated_by',
        'delete_target_on_story_delete': 'delete_target_on_story_delete',
        'ooxml_automation_id': 'ooxml_automation_id',
        'story_id': 'story_id'
    }

    def __init__(self, created_at=None, created_by=None, id=None, updated_at=None, updated_by=None, delete_target_on_story_delete=None, ooxml_automation_id=None, story_id=None):  # noqa: E501
        """OoxmlDocument - a model defined in OpenAPI"""  # noqa: E501

        self._created_at = None
        self._created_by = None
        self._id = None
        self._updated_at = None
        self._updated_by = None
        self._delete_target_on_story_delete = None
        self._ooxml_automation_id = None
        self._story_id = None
        self.discriminator = None

        if created_at is not None:
            self.created_at = created_at
        if created_by is not None:
            self.created_by = created_by
        if id is not None:
            self.id = id
        if updated_at is not None:
            self.updated_at = updated_at
        if updated_by is not None:
            self.updated_by = updated_by
        if delete_target_on_story_delete is not None:
            self.delete_target_on_story_delete = delete_target_on_story_delete
        if ooxml_automation_id is not None:
            self.ooxml_automation_id = ooxml_automation_id
        if story_id is not None:
            self.story_id = story_id

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


        :return: The created_at of this OoxmlDocument.  # noqa: E501
        :rtype: datetime
        """
        return self._created_at

    @created_at.setter
    def created_at(self, created_at):
        """Sets the created_at of this OoxmlDocument.


        :param created_at: The created_at of this OoxmlDocument.  # noqa: E501
        :type: datetime
        """

        self._created_at = created_at

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


        :return: The created_by of this OoxmlDocument.  # noqa: E501
        :rtype: str
        """
        return self._created_by

    @created_by.setter
    def created_by(self, created_by):
        """Sets the created_by of this OoxmlDocument.


        :param created_by: The created_by of this OoxmlDocument.  # noqa: E501
        :type: str
        """

        self._created_by = created_by

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


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

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


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

        self._id = id

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


        :return: The updated_at of this OoxmlDocument.  # noqa: E501
        :rtype: datetime
        """
        return self._updated_at

    @updated_at.setter
    def updated_at(self, updated_at):
        """Sets the updated_at of this OoxmlDocument.


        :param updated_at: The updated_at of this OoxmlDocument.  # noqa: E501
        :type: datetime
        """

        self._updated_at = updated_at

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


        :return: The updated_by of this OoxmlDocument.  # noqa: E501
        :rtype: str
        """
        return self._updated_by

    @updated_by.setter
    def updated_by(self, updated_by):
        """Sets the updated_by of this OoxmlDocument.


        :param updated_by: The updated_by of this OoxmlDocument.  # noqa: E501
        :type: str
        """

        self._updated_by = updated_by

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


        :return: The delete_target_on_story_delete of this OoxmlDocument.  # noqa: E501
        :rtype: bool
        """
        return self._delete_target_on_story_delete

    @delete_target_on_story_delete.setter
    def delete_target_on_story_delete(self, delete_target_on_story_delete):
        """Sets the delete_target_on_story_delete of this OoxmlDocument.


        :param delete_target_on_story_delete: The delete_target_on_story_delete of this OoxmlDocument.  # noqa: E501
        :type: bool
        """

        self._delete_target_on_story_delete = delete_target_on_story_delete

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


        :return: The ooxml_automation_id of this OoxmlDocument.  # noqa: E501
        :rtype: str
        """
        return self._ooxml_automation_id

    @ooxml_automation_id.setter
    def ooxml_automation_id(self, ooxml_automation_id):
        """Sets the ooxml_automation_id of this OoxmlDocument.


        :param ooxml_automation_id: The ooxml_automation_id of this OoxmlDocument.  # noqa: E501
        :type: str
        """

        self._ooxml_automation_id = ooxml_automation_id

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


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

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


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

        self._story_id = story_id

    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, OoxmlDocument):
            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 OoxmlDocument (created_at=None, created_by=None, id=None, updated_at=None, updated_by=None, delete_target_on_story_delete=None, ooxml_automation_id=None, story_id=None)

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

Do not edit the class manually.

OoxmlDocument - a model defined in OpenAPI

Expand source code Browse git
class OoxmlDocument(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 = {
        'created_at': 'datetime',
        'created_by': 'str',
        'id': 'str',
        'updated_at': 'datetime',
        'updated_by': 'str',
        'delete_target_on_story_delete': 'bool',
        'ooxml_automation_id': 'str',
        'story_id': 'str'
    }

    attribute_map = {
        'created_at': 'created_at',
        'created_by': 'created_by',
        'id': 'id',
        'updated_at': 'updated_at',
        'updated_by': 'updated_by',
        'delete_target_on_story_delete': 'delete_target_on_story_delete',
        'ooxml_automation_id': 'ooxml_automation_id',
        'story_id': 'story_id'
    }

    def __init__(self, created_at=None, created_by=None, id=None, updated_at=None, updated_by=None, delete_target_on_story_delete=None, ooxml_automation_id=None, story_id=None):  # noqa: E501
        """OoxmlDocument - a model defined in OpenAPI"""  # noqa: E501

        self._created_at = None
        self._created_by = None
        self._id = None
        self._updated_at = None
        self._updated_by = None
        self._delete_target_on_story_delete = None
        self._ooxml_automation_id = None
        self._story_id = None
        self.discriminator = None

        if created_at is not None:
            self.created_at = created_at
        if created_by is not None:
            self.created_by = created_by
        if id is not None:
            self.id = id
        if updated_at is not None:
            self.updated_at = updated_at
        if updated_by is not None:
            self.updated_by = updated_by
        if delete_target_on_story_delete is not None:
            self.delete_target_on_story_delete = delete_target_on_story_delete
        if ooxml_automation_id is not None:
            self.ooxml_automation_id = ooxml_automation_id
        if story_id is not None:
            self.story_id = story_id

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


        :return: The created_at of this OoxmlDocument.  # noqa: E501
        :rtype: datetime
        """
        return self._created_at

    @created_at.setter
    def created_at(self, created_at):
        """Sets the created_at of this OoxmlDocument.


        :param created_at: The created_at of this OoxmlDocument.  # noqa: E501
        :type: datetime
        """

        self._created_at = created_at

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


        :return: The created_by of this OoxmlDocument.  # noqa: E501
        :rtype: str
        """
        return self._created_by

    @created_by.setter
    def created_by(self, created_by):
        """Sets the created_by of this OoxmlDocument.


        :param created_by: The created_by of this OoxmlDocument.  # noqa: E501
        :type: str
        """

        self._created_by = created_by

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


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

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


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

        self._id = id

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


        :return: The updated_at of this OoxmlDocument.  # noqa: E501
        :rtype: datetime
        """
        return self._updated_at

    @updated_at.setter
    def updated_at(self, updated_at):
        """Sets the updated_at of this OoxmlDocument.


        :param updated_at: The updated_at of this OoxmlDocument.  # noqa: E501
        :type: datetime
        """

        self._updated_at = updated_at

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


        :return: The updated_by of this OoxmlDocument.  # noqa: E501
        :rtype: str
        """
        return self._updated_by

    @updated_by.setter
    def updated_by(self, updated_by):
        """Sets the updated_by of this OoxmlDocument.


        :param updated_by: The updated_by of this OoxmlDocument.  # noqa: E501
        :type: str
        """

        self._updated_by = updated_by

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


        :return: The delete_target_on_story_delete of this OoxmlDocument.  # noqa: E501
        :rtype: bool
        """
        return self._delete_target_on_story_delete

    @delete_target_on_story_delete.setter
    def delete_target_on_story_delete(self, delete_target_on_story_delete):
        """Sets the delete_target_on_story_delete of this OoxmlDocument.


        :param delete_target_on_story_delete: The delete_target_on_story_delete of this OoxmlDocument.  # noqa: E501
        :type: bool
        """

        self._delete_target_on_story_delete = delete_target_on_story_delete

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


        :return: The ooxml_automation_id of this OoxmlDocument.  # noqa: E501
        :rtype: str
        """
        return self._ooxml_automation_id

    @ooxml_automation_id.setter
    def ooxml_automation_id(self, ooxml_automation_id):
        """Sets the ooxml_automation_id of this OoxmlDocument.


        :param ooxml_automation_id: The ooxml_automation_id of this OoxmlDocument.  # noqa: E501
        :type: str
        """

        self._ooxml_automation_id = ooxml_automation_id

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


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

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


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

        self._story_id = story_id

    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, OoxmlDocument):
            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 created_at

Gets the created_at of this OoxmlDocument. # noqa: E501

:return: The created_at of this OoxmlDocument. # noqa: E501 :rtype: datetime

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


    :return: The created_at of this OoxmlDocument.  # noqa: E501
    :rtype: datetime
    """
    return self._created_at
var created_by

Gets the created_by of this OoxmlDocument. # noqa: E501

:return: The created_by of this OoxmlDocument. # noqa: E501 :rtype: str

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


    :return: The created_by of this OoxmlDocument.  # noqa: E501
    :rtype: str
    """
    return self._created_by
var id

Gets the id of this OoxmlDocument. # noqa: E501

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

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


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

Gets the updated_at of this OoxmlDocument. # noqa: E501

:return: The updated_at of this OoxmlDocument. # noqa: E501 :rtype: datetime

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


    :return: The updated_at of this OoxmlDocument.  # noqa: E501
    :rtype: datetime
    """
    return self._updated_at
var updated_by

Gets the updated_by of this OoxmlDocument. # noqa: E501

:return: The updated_by of this OoxmlDocument. # noqa: E501 :rtype: str

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


    :return: The updated_by of this OoxmlDocument.  # noqa: E501
    :rtype: str
    """
    return self._updated_by
var delete_target_on_story_delete

Gets the delete_target_on_story_delete of this OoxmlDocument. # noqa: E501

:return: The delete_target_on_story_delete of this OoxmlDocument. # noqa: E501 :rtype: bool

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


    :return: The delete_target_on_story_delete of this OoxmlDocument.  # noqa: E501
    :rtype: bool
    """
    return self._delete_target_on_story_delete
var ooxml_automation_id

Gets the ooxml_automation_id of this OoxmlDocument. # noqa: E501

:return: The ooxml_automation_id of this OoxmlDocument. # noqa: E501 :rtype: str

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


    :return: The ooxml_automation_id of this OoxmlDocument.  # noqa: E501
    :rtype: str
    """
    return self._ooxml_automation_id
var story_id

Gets the story_id of this OoxmlDocument. # noqa: E501

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

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


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

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())