# coding: utf-8

"""
    vod20250101

    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501

    OpenAPI spec version: common-version
    
    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


import pprint
import re  # noqa: F401

import six

from volcenginesdkcore.configuration import Configuration


class CanvasForStartExecutionInput(object):
    """NOTE: This class is auto generated by the swagger code generator program.

    Do not edit the class manually.
    """

    """
    Attributes:
      swagger_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.
    """
    swagger_types = {
        'background_color': 'str',
        'height': 'int',
        'index': 'str',
        'long': 'int',
        'ratio': 'str',
        'short': 'int',
        'width': 'int'
    }

    attribute_map = {
        'background_color': 'BackgroundColor',
        'height': 'Height',
        'index': 'Index',
        'long': 'Long',
        'ratio': 'Ratio',
        'short': 'Short',
        'width': 'Width'
    }

    def __init__(self, background_color=None, height=None, index=None, long=None, ratio=None, short=None, width=None, _configuration=None):  # noqa: E501
        """CanvasForStartExecutionInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._background_color = None
        self._height = None
        self._index = None
        self._long = None
        self._ratio = None
        self._short = None
        self._width = None
        self.discriminator = None

        if background_color is not None:
            self.background_color = background_color
        if height is not None:
            self.height = height
        if index is not None:
            self.index = index
        if long is not None:
            self.long = long
        if ratio is not None:
            self.ratio = ratio
        if short is not None:
            self.short = short
        if width is not None:
            self.width = width

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


        :return: The background_color of this CanvasForStartExecutionInput.  # noqa: E501
        :rtype: str
        """
        return self._background_color

    @background_color.setter
    def background_color(self, background_color):
        """Sets the background_color of this CanvasForStartExecutionInput.


        :param background_color: The background_color of this CanvasForStartExecutionInput.  # noqa: E501
        :type: str
        """

        self._background_color = background_color

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


        :return: The height of this CanvasForStartExecutionInput.  # noqa: E501
        :rtype: int
        """
        return self._height

    @height.setter
    def height(self, height):
        """Sets the height of this CanvasForStartExecutionInput.


        :param height: The height of this CanvasForStartExecutionInput.  # noqa: E501
        :type: int
        """

        self._height = height

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


        :return: The index of this CanvasForStartExecutionInput.  # noqa: E501
        :rtype: str
        """
        return self._index

    @index.setter
    def index(self, index):
        """Sets the index of this CanvasForStartExecutionInput.


        :param index: The index of this CanvasForStartExecutionInput.  # noqa: E501
        :type: str
        """

        self._index = index

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


        :return: The long of this CanvasForStartExecutionInput.  # noqa: E501
        :rtype: int
        """
        return self._long

    @long.setter
    def long(self, long):
        """Sets the long of this CanvasForStartExecutionInput.


        :param long: The long of this CanvasForStartExecutionInput.  # noqa: E501
        :type: int
        """

        self._long = long

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


        :return: The ratio of this CanvasForStartExecutionInput.  # noqa: E501
        :rtype: str
        """
        return self._ratio

    @ratio.setter
    def ratio(self, ratio):
        """Sets the ratio of this CanvasForStartExecutionInput.


        :param ratio: The ratio of this CanvasForStartExecutionInput.  # noqa: E501
        :type: str
        """

        self._ratio = ratio

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


        :return: The short of this CanvasForStartExecutionInput.  # noqa: E501
        :rtype: int
        """
        return self._short

    @short.setter
    def short(self, short):
        """Sets the short of this CanvasForStartExecutionInput.


        :param short: The short of this CanvasForStartExecutionInput.  # noqa: E501
        :type: int
        """

        self._short = short

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


        :return: The width of this CanvasForStartExecutionInput.  # noqa: E501
        :rtype: int
        """
        return self._width

    @width.setter
    def width(self, width):
        """Sets the width of this CanvasForStartExecutionInput.


        :param width: The width of this CanvasForStartExecutionInput.  # noqa: E501
        :type: int
        """

        self._width = width

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

        for attr, _ in six.iteritems(self.swagger_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
        if issubclass(CanvasForStartExecutionInput, dict):
            for key, value in self.items():
                result[key] = 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, CanvasForStartExecutionInput):
            return False

        return self.to_dict() == other.to_dict()

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

        return self.to_dict() != other.to_dict()
