<?php

namespace Autogedal\Retur\Api\Data;

interface ReturStatusHistoryInterface extends \Magento\Framework\Api\ExtensibleDataInterface
{
    /**#@+
     * Constants for keys of data array. Identical to the name of the getter in snake case.
     */
    /*
     * Entity ID.
     */
    const ENTITY_ID = 'entity_id';
    /*
     * Parent ID.
     */
    const PARENT_ID = 'parent_id';
    /*
     *  Is-customer-notified flag.
     */
    const IS_CUSTOMER_NOTIFIED = 'is_customer_notified';
    /*
     * Comment.
     */
    const COMMENT = 'comment';
    /*
     * Status.
     */
    const STATUS = 'status';
    /*
     * Create-at timestamp.
     */
    const CREATED_AT = 'created_at';
    /*
     * Entity name.
     */
    const ADMIN_USER_ID = 'admin_user_id';

    /**
     * Gets the comment for the retur status history.
     *
     * @return string Comment.
     */
    public function getComment();

    /**
     * Gets the created-at timestamp for the retur status history.
     *
     * @return string|null Created-at timestamp.
     */
    public function getCreatedAt();

    /**
     * Sets the created-at timestamp for the retur status history.
     *
     * @param string $createdAt timestamp
     * @return $this
     */
    public function setCreatedAt($createdAt);

    /**
     * Gets the ID for the retur status history.
     *
     * @return int|null retur status history ID.
     */
    public function getEntityId();

    /**
     * Sets entity ID.
     *
     * @param int $entityId
     * @return $this
     */
    public function setEntityId($entityId);

    /**
     * Gets the admin user for the retur status history.
     *
     * @return string|null Entity name.
     */
    public function getAdminUserId();

    /**
     * Gets the is-customer-notified flag value for the retur status history.
     *
     * @return int Is-customer-notified flag value.
     */
    public function getIsCustomerNotified();

    /**
     * Gets the parent ID for the retur status history.
     *
     * @return int Parent ID.
     */
    public function getParentId();

    /**
     * Gets the status for the retur status history.
     *
     * @return string|null Status.
     */
    public function getStatus();

    /**
     * Sets the parent ID for the retur status history.
     *
     * @param int $id
     * @return $this
     */
    public function setParentId($id);

    /**
     * Sets the is-customer-notified flag value for the retur status history.
     *
     * @param int $isCustomerNotified
     * @return $this
     */
    public function setIsCustomerNotified($isCustomerNotified);

    /**
     * Sets the comment for the retur status history.
     *
     * @param string $comment
     * @return $this
     */
    public function setComment($comment);

    /**
     * Sets the status for the retur status history.
     *
     * @param string $status
     * @return $this
     */
    public function setStatus($status);

    /**
     * Sets the admin user id for the retur status history.
     *
     * @param string $entityName
     * @return $this
     */
    public function setAdminUserId($userId);

    /**
     * Retrieve existing extension attributes object or create a new one.
     *
     * @return \Autogedal\Retur\Api\Data\ReturStatusHistoryExtensionInterface|null
     */
    public function getExtensionAttributes();

    /**
     * Set an extension attributes object.
     *
     * @param \Autogedal\Retur\Api\Data\ReturStatusHistoryExtensionInterface $extensionAttributes
     * @return $this
     */
    public function setExtensionAttributes(
        \Autogedal\Retur\Api\Data\ReturStatusHistoryExtensionInterface $extensionAttributes
    );
}
