Module presalytics.client.presalytics_ooxml_automation.models.slide_group_elements_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 SlideGroupElementsDetails(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 = {
        'shape_tree': 'SlideShapeTreesDetails',
        'shape_tree_id': 'str',
        'parent_group_element_id': 'str',
        'parent_group_element': 'SlideGroupElementsDetails',
        'group_element_type_id': 'int',
        'group_element_type_pk': 'str',
        'type_info': 'SlideGroupElementTypesDetails',
        'group': 'SlideGroupsDetails',
        'shape': 'SlideShapesDetails',
        'connector': 'SlideConnectorDetails',
        'graphic': 'SlideGraphicsDetails',
        'ultimate_parent_shape_tree_id': 'str',
        'child_group_elements': 'list[SlideGroupElementsDetails]',
        'id': 'str',
        'date_created': 'datetime',
        'user_created': 'str',
        'date_modified': 'datetime',
        'user_modified': 'str'
    }

    attribute_map = {
        'shape_tree': 'shapeTree',
        'shape_tree_id': 'shapeTreeId',
        'parent_group_element_id': 'parentGroupElementId',
        'parent_group_element': 'parentGroupElement',
        'group_element_type_id': 'groupElementTypeId',
        'group_element_type_pk': 'groupElementTypePk',
        'type_info': 'typeInfo',
        'group': 'group',
        'shape': 'shape',
        'connector': 'connector',
        'graphic': 'graphic',
        'ultimate_parent_shape_tree_id': 'ultimateParentShapeTreeId',
        'child_group_elements': 'childGroupElements',
        'id': 'id',
        'date_created': 'dateCreated',
        'user_created': 'userCreated',
        'date_modified': 'dateModified',
        'user_modified': 'userModified'
    }

    def __init__(self, shape_tree=None, shape_tree_id=None, parent_group_element_id=None, parent_group_element=None, group_element_type_id=None, group_element_type_pk=None, type_info=None, group=None, shape=None, connector=None, graphic=None, ultimate_parent_shape_tree_id=None, child_group_elements=None, id=None, date_created=None, user_created=None, date_modified=None, user_modified=None):  # noqa: E501
        """SlideGroupElementsDetails - a model defined in OpenAPI"""  # noqa: E501

        self._shape_tree = None
        self._shape_tree_id = None
        self._parent_group_element_id = None
        self._parent_group_element = None
        self._group_element_type_id = None
        self._group_element_type_pk = None
        self._type_info = None
        self._group = None
        self._shape = None
        self._connector = None
        self._graphic = None
        self._ultimate_parent_shape_tree_id = None
        self._child_group_elements = None
        self._id = None
        self._date_created = None
        self._user_created = None
        self._date_modified = None
        self._user_modified = None
        self.discriminator = None

        if shape_tree is not None:
            self.shape_tree = shape_tree
        self.shape_tree_id = shape_tree_id
        self.parent_group_element_id = parent_group_element_id
        if parent_group_element is not None:
            self.parent_group_element = parent_group_element
        if group_element_type_id is not None:
            self.group_element_type_id = group_element_type_id
        self.group_element_type_pk = group_element_type_pk
        if type_info is not None:
            self.type_info = type_info
        if group is not None:
            self.group = group
        if shape is not None:
            self.shape = shape
        if connector is not None:
            self.connector = connector
        if graphic is not None:
            self.graphic = graphic
        self.ultimate_parent_shape_tree_id = ultimate_parent_shape_tree_id
        self.child_group_elements = child_group_elements
        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 shape_tree(self):
        """Gets the shape_tree of this SlideGroupElementsDetails.  # noqa: E501


        :return: The shape_tree of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideShapeTreesDetails
        """
        return self._shape_tree

    @shape_tree.setter
    def shape_tree(self, shape_tree):
        """Sets the shape_tree of this SlideGroupElementsDetails.


        :param shape_tree: The shape_tree of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideShapeTreesDetails
        """

        self._shape_tree = shape_tree

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


        :return: The shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._shape_tree_id

    @shape_tree_id.setter
    def shape_tree_id(self, shape_tree_id):
        """Sets the shape_tree_id of this SlideGroupElementsDetails.


        :param shape_tree_id: The shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._shape_tree_id = shape_tree_id

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


        :return: The parent_group_element_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._parent_group_element_id

    @parent_group_element_id.setter
    def parent_group_element_id(self, parent_group_element_id):
        """Sets the parent_group_element_id of this SlideGroupElementsDetails.


        :param parent_group_element_id: The parent_group_element_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._parent_group_element_id = parent_group_element_id

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


        :return: The parent_group_element of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGroupElementsDetails
        """
        return self._parent_group_element

    @parent_group_element.setter
    def parent_group_element(self, parent_group_element):
        """Sets the parent_group_element of this SlideGroupElementsDetails.


        :param parent_group_element: The parent_group_element of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGroupElementsDetails
        """

        self._parent_group_element = parent_group_element

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


        :return: The group_element_type_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: int
        """
        return self._group_element_type_id

    @group_element_type_id.setter
    def group_element_type_id(self, group_element_type_id):
        """Sets the group_element_type_id of this SlideGroupElementsDetails.


        :param group_element_type_id: The group_element_type_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: int
        """

        self._group_element_type_id = group_element_type_id

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


        :return: The group_element_type_pk of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._group_element_type_pk

    @group_element_type_pk.setter
    def group_element_type_pk(self, group_element_type_pk):
        """Sets the group_element_type_pk of this SlideGroupElementsDetails.


        :param group_element_type_pk: The group_element_type_pk of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._group_element_type_pk = group_element_type_pk

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


        :return: The type_info of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGroupElementTypesDetails
        """
        return self._type_info

    @type_info.setter
    def type_info(self, type_info):
        """Sets the type_info of this SlideGroupElementsDetails.


        :param type_info: The type_info of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGroupElementTypesDetails
        """

        self._type_info = type_info

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


        :return: The group of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGroupsDetails
        """
        return self._group

    @group.setter
    def group(self, group):
        """Sets the group of this SlideGroupElementsDetails.


        :param group: The group of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGroupsDetails
        """

        self._group = group

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


        :return: The shape of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideShapesDetails
        """
        return self._shape

    @shape.setter
    def shape(self, shape):
        """Sets the shape of this SlideGroupElementsDetails.


        :param shape: The shape of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideShapesDetails
        """

        self._shape = shape

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


        :return: The connector of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideConnectorDetails
        """
        return self._connector

    @connector.setter
    def connector(self, connector):
        """Sets the connector of this SlideGroupElementsDetails.


        :param connector: The connector of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideConnectorDetails
        """

        self._connector = connector

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


        :return: The graphic of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGraphicsDetails
        """
        return self._graphic

    @graphic.setter
    def graphic(self, graphic):
        """Sets the graphic of this SlideGroupElementsDetails.


        :param graphic: The graphic of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGraphicsDetails
        """

        self._graphic = graphic

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


        :return: The ultimate_parent_shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._ultimate_parent_shape_tree_id

    @ultimate_parent_shape_tree_id.setter
    def ultimate_parent_shape_tree_id(self, ultimate_parent_shape_tree_id):
        """Sets the ultimate_parent_shape_tree_id of this SlideGroupElementsDetails.


        :param ultimate_parent_shape_tree_id: The ultimate_parent_shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._ultimate_parent_shape_tree_id = ultimate_parent_shape_tree_id

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


        :return: The child_group_elements of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: list[SlideGroupElementsDetails]
        """
        return self._child_group_elements

    @child_group_elements.setter
    def child_group_elements(self, child_group_elements):
        """Sets the child_group_elements of this SlideGroupElementsDetails.


        :param child_group_elements: The child_group_elements of this SlideGroupElementsDetails.  # noqa: E501
        :type: list[SlideGroupElementsDetails]
        """

        self._child_group_elements = child_group_elements

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


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

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


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

        self._id = id

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


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

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


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

        self._date_created = date_created

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


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

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


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

        self._user_created = user_created

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


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

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


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

        self._date_modified = date_modified

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


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

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


        :param user_modified: The user_modified of this SlideGroupElementsDetails.  # 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, SlideGroupElementsDetails):
            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 SlideGroupElementsDetails (shape_tree=None, shape_tree_id=None, parent_group_element_id=None, parent_group_element=None, group_element_type_id=None, group_element_type_pk=None, type_info=None, group=None, shape=None, connector=None, graphic=None, ultimate_parent_shape_tree_id=None, child_group_elements=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.

SlideGroupElementsDetails - a model defined in OpenAPI

Expand source code Browse git
class SlideGroupElementsDetails(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 = {
        'shape_tree': 'SlideShapeTreesDetails',
        'shape_tree_id': 'str',
        'parent_group_element_id': 'str',
        'parent_group_element': 'SlideGroupElementsDetails',
        'group_element_type_id': 'int',
        'group_element_type_pk': 'str',
        'type_info': 'SlideGroupElementTypesDetails',
        'group': 'SlideGroupsDetails',
        'shape': 'SlideShapesDetails',
        'connector': 'SlideConnectorDetails',
        'graphic': 'SlideGraphicsDetails',
        'ultimate_parent_shape_tree_id': 'str',
        'child_group_elements': 'list[SlideGroupElementsDetails]',
        'id': 'str',
        'date_created': 'datetime',
        'user_created': 'str',
        'date_modified': 'datetime',
        'user_modified': 'str'
    }

    attribute_map = {
        'shape_tree': 'shapeTree',
        'shape_tree_id': 'shapeTreeId',
        'parent_group_element_id': 'parentGroupElementId',
        'parent_group_element': 'parentGroupElement',
        'group_element_type_id': 'groupElementTypeId',
        'group_element_type_pk': 'groupElementTypePk',
        'type_info': 'typeInfo',
        'group': 'group',
        'shape': 'shape',
        'connector': 'connector',
        'graphic': 'graphic',
        'ultimate_parent_shape_tree_id': 'ultimateParentShapeTreeId',
        'child_group_elements': 'childGroupElements',
        'id': 'id',
        'date_created': 'dateCreated',
        'user_created': 'userCreated',
        'date_modified': 'dateModified',
        'user_modified': 'userModified'
    }

    def __init__(self, shape_tree=None, shape_tree_id=None, parent_group_element_id=None, parent_group_element=None, group_element_type_id=None, group_element_type_pk=None, type_info=None, group=None, shape=None, connector=None, graphic=None, ultimate_parent_shape_tree_id=None, child_group_elements=None, id=None, date_created=None, user_created=None, date_modified=None, user_modified=None):  # noqa: E501
        """SlideGroupElementsDetails - a model defined in OpenAPI"""  # noqa: E501

        self._shape_tree = None
        self._shape_tree_id = None
        self._parent_group_element_id = None
        self._parent_group_element = None
        self._group_element_type_id = None
        self._group_element_type_pk = None
        self._type_info = None
        self._group = None
        self._shape = None
        self._connector = None
        self._graphic = None
        self._ultimate_parent_shape_tree_id = None
        self._child_group_elements = None
        self._id = None
        self._date_created = None
        self._user_created = None
        self._date_modified = None
        self._user_modified = None
        self.discriminator = None

        if shape_tree is not None:
            self.shape_tree = shape_tree
        self.shape_tree_id = shape_tree_id
        self.parent_group_element_id = parent_group_element_id
        if parent_group_element is not None:
            self.parent_group_element = parent_group_element
        if group_element_type_id is not None:
            self.group_element_type_id = group_element_type_id
        self.group_element_type_pk = group_element_type_pk
        if type_info is not None:
            self.type_info = type_info
        if group is not None:
            self.group = group
        if shape is not None:
            self.shape = shape
        if connector is not None:
            self.connector = connector
        if graphic is not None:
            self.graphic = graphic
        self.ultimate_parent_shape_tree_id = ultimate_parent_shape_tree_id
        self.child_group_elements = child_group_elements
        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 shape_tree(self):
        """Gets the shape_tree of this SlideGroupElementsDetails.  # noqa: E501


        :return: The shape_tree of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideShapeTreesDetails
        """
        return self._shape_tree

    @shape_tree.setter
    def shape_tree(self, shape_tree):
        """Sets the shape_tree of this SlideGroupElementsDetails.


        :param shape_tree: The shape_tree of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideShapeTreesDetails
        """

        self._shape_tree = shape_tree

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


        :return: The shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._shape_tree_id

    @shape_tree_id.setter
    def shape_tree_id(self, shape_tree_id):
        """Sets the shape_tree_id of this SlideGroupElementsDetails.


        :param shape_tree_id: The shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._shape_tree_id = shape_tree_id

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


        :return: The parent_group_element_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._parent_group_element_id

    @parent_group_element_id.setter
    def parent_group_element_id(self, parent_group_element_id):
        """Sets the parent_group_element_id of this SlideGroupElementsDetails.


        :param parent_group_element_id: The parent_group_element_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._parent_group_element_id = parent_group_element_id

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


        :return: The parent_group_element of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGroupElementsDetails
        """
        return self._parent_group_element

    @parent_group_element.setter
    def parent_group_element(self, parent_group_element):
        """Sets the parent_group_element of this SlideGroupElementsDetails.


        :param parent_group_element: The parent_group_element of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGroupElementsDetails
        """

        self._parent_group_element = parent_group_element

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


        :return: The group_element_type_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: int
        """
        return self._group_element_type_id

    @group_element_type_id.setter
    def group_element_type_id(self, group_element_type_id):
        """Sets the group_element_type_id of this SlideGroupElementsDetails.


        :param group_element_type_id: The group_element_type_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: int
        """

        self._group_element_type_id = group_element_type_id

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


        :return: The group_element_type_pk of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._group_element_type_pk

    @group_element_type_pk.setter
    def group_element_type_pk(self, group_element_type_pk):
        """Sets the group_element_type_pk of this SlideGroupElementsDetails.


        :param group_element_type_pk: The group_element_type_pk of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._group_element_type_pk = group_element_type_pk

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


        :return: The type_info of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGroupElementTypesDetails
        """
        return self._type_info

    @type_info.setter
    def type_info(self, type_info):
        """Sets the type_info of this SlideGroupElementsDetails.


        :param type_info: The type_info of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGroupElementTypesDetails
        """

        self._type_info = type_info

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


        :return: The group of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGroupsDetails
        """
        return self._group

    @group.setter
    def group(self, group):
        """Sets the group of this SlideGroupElementsDetails.


        :param group: The group of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGroupsDetails
        """

        self._group = group

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


        :return: The shape of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideShapesDetails
        """
        return self._shape

    @shape.setter
    def shape(self, shape):
        """Sets the shape of this SlideGroupElementsDetails.


        :param shape: The shape of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideShapesDetails
        """

        self._shape = shape

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


        :return: The connector of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideConnectorDetails
        """
        return self._connector

    @connector.setter
    def connector(self, connector):
        """Sets the connector of this SlideGroupElementsDetails.


        :param connector: The connector of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideConnectorDetails
        """

        self._connector = connector

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


        :return: The graphic of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: SlideGraphicsDetails
        """
        return self._graphic

    @graphic.setter
    def graphic(self, graphic):
        """Sets the graphic of this SlideGroupElementsDetails.


        :param graphic: The graphic of this SlideGroupElementsDetails.  # noqa: E501
        :type: SlideGraphicsDetails
        """

        self._graphic = graphic

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


        :return: The ultimate_parent_shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: str
        """
        return self._ultimate_parent_shape_tree_id

    @ultimate_parent_shape_tree_id.setter
    def ultimate_parent_shape_tree_id(self, ultimate_parent_shape_tree_id):
        """Sets the ultimate_parent_shape_tree_id of this SlideGroupElementsDetails.


        :param ultimate_parent_shape_tree_id: The ultimate_parent_shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
        :type: str
        """

        self._ultimate_parent_shape_tree_id = ultimate_parent_shape_tree_id

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


        :return: The child_group_elements of this SlideGroupElementsDetails.  # noqa: E501
        :rtype: list[SlideGroupElementsDetails]
        """
        return self._child_group_elements

    @child_group_elements.setter
    def child_group_elements(self, child_group_elements):
        """Sets the child_group_elements of this SlideGroupElementsDetails.


        :param child_group_elements: The child_group_elements of this SlideGroupElementsDetails.  # noqa: E501
        :type: list[SlideGroupElementsDetails]
        """

        self._child_group_elements = child_group_elements

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


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

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


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

        self._id = id

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


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

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


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

        self._date_created = date_created

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


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

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


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

        self._user_created = user_created

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


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

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


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

        self._date_modified = date_modified

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


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

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


        :param user_modified: The user_modified of this SlideGroupElementsDetails.  # 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, SlideGroupElementsDetails):
            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 shape_tree

Gets the shape_tree of this SlideGroupElementsDetails. # noqa: E501

:return: The shape_tree of this SlideGroupElementsDetails. # noqa: E501 :rtype: SlideShapeTreesDetails

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


    :return: The shape_tree of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: SlideShapeTreesDetails
    """
    return self._shape_tree
var shape_tree_id

Gets the shape_tree_id of this SlideGroupElementsDetails. # noqa: E501

:return: The shape_tree_id of this SlideGroupElementsDetails. # noqa: E501 :rtype: str

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


    :return: The shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: str
    """
    return self._shape_tree_id
var parent_group_element_id

Gets the parent_group_element_id of this SlideGroupElementsDetails. # noqa: E501

:return: The parent_group_element_id of this SlideGroupElementsDetails. # noqa: E501 :rtype: str

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


    :return: The parent_group_element_id of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: str
    """
    return self._parent_group_element_id
var parent_group_element

Gets the parent_group_element of this SlideGroupElementsDetails. # noqa: E501

:return: The parent_group_element of this SlideGroupElementsDetails. # noqa: E501 :rtype: SlideGroupElementsDetails

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


    :return: The parent_group_element of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: SlideGroupElementsDetails
    """
    return self._parent_group_element
var group_element_type_id

Gets the group_element_type_id of this SlideGroupElementsDetails. # noqa: E501

:return: The group_element_type_id of this SlideGroupElementsDetails. # noqa: E501 :rtype: int

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


    :return: The group_element_type_id of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: int
    """
    return self._group_element_type_id
var group_element_type_pk

Gets the group_element_type_pk of this SlideGroupElementsDetails. # noqa: E501

:return: The group_element_type_pk of this SlideGroupElementsDetails. # noqa: E501 :rtype: str

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


    :return: The group_element_type_pk of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: str
    """
    return self._group_element_type_pk
var type_info

Gets the type_info of this SlideGroupElementsDetails. # noqa: E501

:return: The type_info of this SlideGroupElementsDetails. # noqa: E501 :rtype: SlideGroupElementTypesDetails

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


    :return: The type_info of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: SlideGroupElementTypesDetails
    """
    return self._type_info
var group

Gets the group of this SlideGroupElementsDetails. # noqa: E501

:return: The group of this SlideGroupElementsDetails. # noqa: E501 :rtype: SlideGroupsDetails

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


    :return: The group of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: SlideGroupsDetails
    """
    return self._group
var shape

Gets the shape of this SlideGroupElementsDetails. # noqa: E501

:return: The shape of this SlideGroupElementsDetails. # noqa: E501 :rtype: SlideShapesDetails

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


    :return: The shape of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: SlideShapesDetails
    """
    return self._shape
var connector

Gets the connector of this SlideGroupElementsDetails. # noqa: E501

:return: The connector of this SlideGroupElementsDetails. # noqa: E501 :rtype: SlideConnectorDetails

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


    :return: The connector of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: SlideConnectorDetails
    """
    return self._connector
var graphic

Gets the graphic of this SlideGroupElementsDetails. # noqa: E501

:return: The graphic of this SlideGroupElementsDetails. # noqa: E501 :rtype: SlideGraphicsDetails

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


    :return: The graphic of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: SlideGraphicsDetails
    """
    return self._graphic
var ultimate_parent_shape_tree_id

Gets the ultimate_parent_shape_tree_id of this SlideGroupElementsDetails. # noqa: E501

:return: The ultimate_parent_shape_tree_id of this SlideGroupElementsDetails. # noqa: E501 :rtype: str

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


    :return: The ultimate_parent_shape_tree_id of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: str
    """
    return self._ultimate_parent_shape_tree_id
var child_group_elements

Gets the child_group_elements of this SlideGroupElementsDetails. # noqa: E501

:return: The child_group_elements of this SlideGroupElementsDetails. # noqa: E501 :rtype: list[SlideGroupElementsDetails]

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


    :return: The child_group_elements of this SlideGroupElementsDetails.  # noqa: E501
    :rtype: list[SlideGroupElementsDetails]
    """
    return self._child_group_elements
var id

Gets the id of this SlideGroupElementsDetails. # noqa: E501

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

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


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

Gets the date_created of this SlideGroupElementsDetails. # noqa: E501

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

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


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

Gets the user_created of this SlideGroupElementsDetails. # noqa: E501

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

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


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

Gets the date_modified of this SlideGroupElementsDetails. # noqa: E501

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

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


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

Gets the user_modified of this SlideGroupElementsDetails. # noqa: E501

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

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


    :return: The user_modified of this SlideGroupElementsDetails.  # 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())