-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
169 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
|
||
namespace directapi\services\ads\models; | ||
|
||
|
||
use directapi\components\Model; | ||
|
||
class CpmVideoAdBuilderAdAdd extends Model | ||
{ | ||
/** | ||
* @var AdBuilderAdAddItem | ||
*/ | ||
public $Creative; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $Href; | ||
|
||
/** | ||
* @var \directapi\common\containers\ArrayOfString | ||
*/ | ||
public $TrackingPixels; | ||
|
||
/** | ||
* @var int | ||
*/ | ||
public $TurboPageId; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
|
||
|
||
namespace directapi\services\ads\models; | ||
|
||
|
||
use directapi\components\Model; | ||
|
||
class CpmVideoAdBuilderAdGet extends Model | ||
{ | ||
/** | ||
* @var AdBuilderAdGetItem | ||
*/ | ||
public $Creative; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $Href; | ||
|
||
/** | ||
* @var TrackingPixelGetArray | ||
*/ | ||
public $TrackingPixels; | ||
|
||
/** | ||
* @var int | ||
*/ | ||
public $TurboPageId; | ||
|
||
/** | ||
* @var \directapi\common\models\ExtensionModeration | ||
*/ | ||
public $TurboPageModeration; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
|
||
namespace directapi\services\ads\models; | ||
|
||
|
||
use directapi\components\Model; | ||
|
||
class CpmVideoAdBuilderAdUpdate extends Model | ||
{ | ||
/** | ||
* @var AdBuilderAdAddItem | ||
*/ | ||
public $Creative; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $Href; | ||
|
||
/** | ||
* @var \directapi\common\containers\ArrayOfString | ||
*/ | ||
public $TrackingPixels; | ||
|
||
/** | ||
* @var int | ||
*/ | ||
public $TurboPageId; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
|
||
namespace directapi\services\ads\models; | ||
|
||
|
||
use directapi\components\Model; | ||
|
||
class TrackingPixelGetArray extends Model | ||
{ | ||
/** | ||
* @var TrackingPixelGetItem[] | ||
*/ | ||
public $Items = []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
|
||
namespace directapi\services\ads\models; | ||
|
||
|
||
use directapi\components\Model; | ||
|
||
class TrackingPixelGetItem extends Model | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $TrackingPixel; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $Provider; | ||
} |