summaryrefslogtreecommitdiff
path: root/Postman/Postman-Mail/mailgun/vendor/mailgun/mailgun-php/src/Mailgun/Model/Suppression/Unsubscribe/Unsubscribe.php
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/Postman-Mail/mailgun/vendor/mailgun/mailgun-php/src/Mailgun/Model/Suppression/Unsubscribe/Unsubscribe.php')
-rw-r--r--Postman/Postman-Mail/mailgun/vendor/mailgun/mailgun-php/src/Mailgun/Model/Suppression/Unsubscribe/Unsubscribe.php99
1 files changed, 0 insertions, 99 deletions
diff --git a/Postman/Postman-Mail/mailgun/vendor/mailgun/mailgun-php/src/Mailgun/Model/Suppression/Unsubscribe/Unsubscribe.php b/Postman/Postman-Mail/mailgun/vendor/mailgun/mailgun-php/src/Mailgun/Model/Suppression/Unsubscribe/Unsubscribe.php
deleted file mode 100644
index eed521d..0000000
--- a/Postman/Postman-Mail/mailgun/vendor/mailgun/mailgun-php/src/Mailgun/Model/Suppression/Unsubscribe/Unsubscribe.php
+++ /dev/null
@@ -1,99 +0,0 @@
-<?php
-
-/*
- * Copyright (C) 2013-2016 Mailgun
- *
- * This software may be modified and distributed under the terms
- * of the MIT license. See the LICENSE file for details.
- */
-
-namespace Mailgun\Model\Suppression\Unsubscribe;
-
-/**
- * @author Sean Johnson <sean@mailgun.com>
- */
-class Unsubscribe
-{
- /**
- * @var string
- */
- private $address;
-
- /**
- * @var string
- */
- private $tag;
-
- /**
- * @var \DateTime
- */
- private $createdAt;
-
- /**
- * @param string $address
- */
- private function __construct($address)
- {
- $this->address = $address;
- $this->createdAt = new \DateTime();
- }
-
- /**
- * @param array $data
- *
- * @return Unsubscribe
- */
- public static function create(array $data)
- {
- $unsubscribe = new self($data['address']);
-
- if (isset($data['tag'])) {
- $unsubscribe->setTag($data['tag']);
- }
- if (isset($data['created_at'])) {
- $unsubscribe->setCreatedAt(new \DateTime($data['created_at']));
- }
-
- return $unsubscribe;
- }
-
- /**
- * @return string
- */
- public function getAddress()
- {
- return $this->address;
- }
-
- /**
- * @return string
- */
- public function getTag()
- {
- return $this->tag;
- }
-
- /**
- * @param string $tag
- */
- private function setTag($tag)
- {
- $this->tag = $tag;
- }
-
- /**
- * @return \DateTime
- */
- public function getCreatedAt()
- {
- return $this->createdAt;
- }
-
- /**
- * @param \DateTime $createdAt
- */
- private function setCreatedAt(\DateTime $createdAt)
- {
- $this->createdAt = $createdAt;
- }
-}