You are here

SmsDeliveryReportInterface.php in SMS Framework 2.1.x

Namespace

Drupal\sms\Entity

File

src/Entity/SmsDeliveryReportInterface.php
View source
<?php

declare (strict_types=1);
namespace Drupal\sms\Entity;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\sms\Message\SmsDeliveryReportInterface as PlainDeliveryReportInterface;

/**
 * Interface for SMS delivery report entity.
 */
interface SmsDeliveryReportInterface extends PlainDeliveryReportInterface, ContentEntityInterface, EntityChangedInterface {

  /**
   * Gets the parent SMS message entity.
   *
   * @return \Drupal\sms\Entity\SmsMessageInterface
   *   The parent SMS message entity.
   */
  public function getSmsMessage();

  /**
   * Sets the parent SMS message entity.
   *
   * @param \Drupal\sms\Entity\SmsMessageInterface $sms_message
   *   The parent SMS message object.
   *
   * @return $this
   *   Returns this report object for chaining.
   */
  public function setSmsMessage(SmsMessageInterface $sms_message);

}

Interfaces

Namesort descending Description
SmsDeliveryReportInterface Interface for SMS delivery report entity.