We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f7fe8 commit 28e414dCopy full SHA for 28e414d
Atomx/Resources/Creative.php
@@ -94,11 +94,6 @@ public function setSize($size)
94
$this->size_id = $size;
95
}
96
97
- public function setBanned($banned_id)
98
- {
99
- $this->banned_id = $banned_id;
100
- }
101
-
102
public function setAuditedAt($audited_at)
103
{
104
$this->audited_at = $audited_at;
Atomx/Resources/CreativeBan.php
@@ -0,0 +1,23 @@
1
+<?php namespace Atomx\Resources;
2
+
3
+use Atomx\AtomxClient;
4
5
+class CreativeBan extends AtomxClient {
6
7
+ protected $endpoint = 'creative_ban';
8
9
+ public function setUrl($url)
10
+ {
11
+ $this->url = $url;
12
+ }
13
14
+ public function setCreativeId($id)
15
16
+ $this->creative_id = $id;
17
18
19
+ public function setReasonId($id)
20
21
+ $this->reason_id = $id;
22
23
+}
0 commit comments