Module presalytics.client.presalytics_story.models.story_collaborator

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 StoryCollaborator(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',
        'active': 'bool',
        'email': 'str',
        'lead_id': 'int',
        'name': 'str',
        'permission_type': 'PermissionType',
        'permission_type_id': 'str',
        'story_id': 'str',
        'user_id': 'str'
    }

    attribute_map = {
        'created_at': 'created_at',
        'created_by': 'created_by',
        'id': 'id',
        'updated_at': 'updated_at',
        'updated_by': 'updated_by',
        'active': 'active',
        'email': 'email',
        'lead_id': 'lead_id',
        'name': 'name',
        'permission_type': 'permission_type',
        'permission_type_id': 'permission_type_id',
        'story_id': 'story_id',
        'user_id': 'user_id'
    }

    def __init__(self, created_at=None, created_by=None, id=None, updated_at=None, updated_by=None, active=None, email=None, lead_id=None, name=None, permission_type=None, permission_type_id=None, story_id=None, user_id=None):  # noqa: E501
        """StoryCollaborator - 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._active = None
        self._email = None
        self._lead_id = None
        self._name = None
        self._permission_type = None
        self._permission_type_id = None
        self._story_id = None
        self._user_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 active is not None:
            self.active = active
        if email is not None:
            self.email = email
        if lead_id is not None:
            self.lead_id = lead_id
        if name is not None:
            self.name = name
        if permission_type is not None:
            self.permission_type = permission_type
        if permission_type_id is not None:
            self.permission_type_id = permission_type_id
        if story_id is not None:
            self.story_id = story_id
        if user_id is not None:
            self.user_id = user_id

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


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

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


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

        self._created_at = created_at

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


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

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


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

        self._created_by = created_by

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


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

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


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

        self._id = id

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


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

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


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

        self._updated_at = updated_at

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


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

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


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

        self._updated_by = updated_by

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


        :return: The active of this StoryCollaborator.  # noqa: E501
        :rtype: bool
        """
        return self._active

    @active.setter
    def active(self, active):
        """Sets the active of this StoryCollaborator.


        :param active: The active of this StoryCollaborator.  # noqa: E501
        :type: bool
        """

        self._active = active

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


        :return: The email of this StoryCollaborator.  # noqa: E501
        :rtype: str
        """
        return self._email

    @email.setter
    def email(self, email):
        """Sets the email of this StoryCollaborator.


        :param email: The email of this StoryCollaborator.  # noqa: E501
        :type: str
        """

        self._email = email

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


        :return: The lead_id of this StoryCollaborator.  # noqa: E501
        :rtype: int
        """
        return self._lead_id

    @lead_id.setter
    def lead_id(self, lead_id):
        """Sets the lead_id of this StoryCollaborator.


        :param lead_id: The lead_id of this StoryCollaborator.  # noqa: E501
        :type: int
        """

        self._lead_id = lead_id

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


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

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


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

        self._name = name

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


        :return: The permission_type of this StoryCollaborator.  # noqa: E501
        :rtype: PermissionType
        """
        return self._permission_type

    @permission_type.setter
    def permission_type(self, permission_type):
        """Sets the permission_type of this StoryCollaborator.


        :param permission_type: The permission_type of this StoryCollaborator.  # noqa: E501
        :type: PermissionType
        """

        self._permission_type = permission_type

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


        :return: The permission_type_id of this StoryCollaborator.  # noqa: E501
        :rtype: str
        """
        return self._permission_type_id

    @permission_type_id.setter
    def permission_type_id(self, permission_type_id):
        """Sets the permission_type_id of this StoryCollaborator.


        :param permission_type_id: The permission_type_id of this StoryCollaborator.  # noqa: E501
        :type: str
        """

        self._permission_type_id = permission_type_id

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


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

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


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

        self._story_id = story_id

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


        :return: The user_id of this StoryCollaborator.  # noqa: E501
        :rtype: str
        """
        return self._user_id

    @user_id.setter
    def user_id(self, user_id):
        """Sets the user_id of this StoryCollaborator.


        :param user_id: The user_id of this StoryCollaborator.  # noqa: E501
        :type: str
        """

        self._user_id = user_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, StoryCollaborator):
            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 StoryCollaborator (created_at=None, created_by=None, id=None, updated_at=None, updated_by=None, active=None, email=None, lead_id=None, name=None, permission_type=None, permission_type_id=None, story_id=None, user_id=None)

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

Do not edit the class manually.

StoryCollaborator - a model defined in OpenAPI

Expand source code Browse git
class StoryCollaborator(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',
        'active': 'bool',
        'email': 'str',
        'lead_id': 'int',
        'name': 'str',
        'permission_type': 'PermissionType',
        'permission_type_id': 'str',
        'story_id': 'str',
        'user_id': 'str'
    }

    attribute_map = {
        'created_at': 'created_at',
        'created_by': 'created_by',
        'id': 'id',
        'updated_at': 'updated_at',
        'updated_by': 'updated_by',
        'active': 'active',
        'email': 'email',
        'lead_id': 'lead_id',
        'name': 'name',
        'permission_type': 'permission_type',
        'permission_type_id': 'permission_type_id',
        'story_id': 'story_id',
        'user_id': 'user_id'
    }

    def __init__(self, created_at=None, created_by=None, id=None, updated_at=None, updated_by=None, active=None, email=None, lead_id=None, name=None, permission_type=None, permission_type_id=None, story_id=None, user_id=None):  # noqa: E501
        """StoryCollaborator - 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._active = None
        self._email = None
        self._lead_id = None
        self._name = None
        self._permission_type = None
        self._permission_type_id = None
        self._story_id = None
        self._user_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 active is not None:
            self.active = active
        if email is not None:
            self.email = email
        if lead_id is not None:
            self.lead_id = lead_id
        if name is not None:
            self.name = name
        if permission_type is not None:
            self.permission_type = permission_type
        if permission_type_id is not None:
            self.permission_type_id = permission_type_id
        if story_id is not None:
            self.story_id = story_id
        if user_id is not None:
            self.user_id = user_id

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


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

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


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

        self._created_at = created_at

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


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

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


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

        self._created_by = created_by

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


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

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


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

        self._id = id

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


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

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


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

        self._updated_at = updated_at

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


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

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


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

        self._updated_by = updated_by

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


        :return: The active of this StoryCollaborator.  # noqa: E501
        :rtype: bool
        """
        return self._active

    @active.setter
    def active(self, active):
        """Sets the active of this StoryCollaborator.


        :param active: The active of this StoryCollaborator.  # noqa: E501
        :type: bool
        """

        self._active = active

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


        :return: The email of this StoryCollaborator.  # noqa: E501
        :rtype: str
        """
        return self._email

    @email.setter
    def email(self, email):
        """Sets the email of this StoryCollaborator.


        :param email: The email of this StoryCollaborator.  # noqa: E501
        :type: str
        """

        self._email = email

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


        :return: The lead_id of this StoryCollaborator.  # noqa: E501
        :rtype: int
        """
        return self._lead_id

    @lead_id.setter
    def lead_id(self, lead_id):
        """Sets the lead_id of this StoryCollaborator.


        :param lead_id: The lead_id of this StoryCollaborator.  # noqa: E501
        :type: int
        """

        self._lead_id = lead_id

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


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

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


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

        self._name = name

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


        :return: The permission_type of this StoryCollaborator.  # noqa: E501
        :rtype: PermissionType
        """
        return self._permission_type

    @permission_type.setter
    def permission_type(self, permission_type):
        """Sets the permission_type of this StoryCollaborator.


        :param permission_type: The permission_type of this StoryCollaborator.  # noqa: E501
        :type: PermissionType
        """

        self._permission_type = permission_type

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


        :return: The permission_type_id of this StoryCollaborator.  # noqa: E501
        :rtype: str
        """
        return self._permission_type_id

    @permission_type_id.setter
    def permission_type_id(self, permission_type_id):
        """Sets the permission_type_id of this StoryCollaborator.


        :param permission_type_id: The permission_type_id of this StoryCollaborator.  # noqa: E501
        :type: str
        """

        self._permission_type_id = permission_type_id

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


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

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


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

        self._story_id = story_id

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


        :return: The user_id of this StoryCollaborator.  # noqa: E501
        :rtype: str
        """
        return self._user_id

    @user_id.setter
    def user_id(self, user_id):
        """Sets the user_id of this StoryCollaborator.


        :param user_id: The user_id of this StoryCollaborator.  # noqa: E501
        :type: str
        """

        self._user_id = user_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, StoryCollaborator):
            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 StoryCollaborator. # noqa: E501

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

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


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

Gets the created_by of this StoryCollaborator. # noqa: E501

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

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


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

Gets the id of this StoryCollaborator. # noqa: E501

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

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


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

Gets the updated_at of this StoryCollaborator. # noqa: E501

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

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


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

Gets the updated_by of this StoryCollaborator. # noqa: E501

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

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


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

Gets the active of this StoryCollaborator. # noqa: E501

:return: The active of this StoryCollaborator. # noqa: E501 :rtype: bool

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


    :return: The active of this StoryCollaborator.  # noqa: E501
    :rtype: bool
    """
    return self._active
var email

Gets the email of this StoryCollaborator. # noqa: E501

:return: The email of this StoryCollaborator. # noqa: E501 :rtype: str

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


    :return: The email of this StoryCollaborator.  # noqa: E501
    :rtype: str
    """
    return self._email
var lead_id

Gets the lead_id of this StoryCollaborator. # noqa: E501

:return: The lead_id of this StoryCollaborator. # noqa: E501 :rtype: int

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


    :return: The lead_id of this StoryCollaborator.  # noqa: E501
    :rtype: int
    """
    return self._lead_id
var name

Gets the name of this StoryCollaborator. # noqa: E501

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

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


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

Gets the permission_type of this StoryCollaborator. # noqa: E501

:return: The permission_type of this StoryCollaborator. # noqa: E501 :rtype: PermissionType

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


    :return: The permission_type of this StoryCollaborator.  # noqa: E501
    :rtype: PermissionType
    """
    return self._permission_type
var permission_type_id

Gets the permission_type_id of this StoryCollaborator. # noqa: E501

:return: The permission_type_id of this StoryCollaborator. # noqa: E501 :rtype: str

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


    :return: The permission_type_id of this StoryCollaborator.  # noqa: E501
    :rtype: str
    """
    return self._permission_type_id
var story_id

Gets the story_id of this StoryCollaborator. # noqa: E501

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

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


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

Gets the user_id of this StoryCollaborator. # noqa: E501

:return: The user_id of this StoryCollaborator. # noqa: E501 :rtype: str

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


    :return: The user_id of this StoryCollaborator.  # noqa: E501
    :rtype: str
    """
    return self._user_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())