-
Notifications
You must be signed in to change notification settings - Fork 13
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
5 changed files
with
64 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Promopult\TikTokMarketingApi\Enumeration; | ||
|
||
final class AdvertiserBillingType | ||
{ | ||
public const TRANS_TYPE_TRANSFER = 'TRANS_TYPE_TRANSFER'; // Transfer | ||
public const TRANS_TYPE_TAX = 'TRANS_TYPE_TAX'; // Consumption | ||
public const TRANS_TYPE_COST = 'TRANS_TYPE_COST'; // Tax | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Promopult\TikTokMarketingApi\Enumeration; | ||
|
||
final class AdvertiserDisplayStatus | ||
{ | ||
public const SHOW_ACCOUNT_STATUS_NOT_APPROVED = 'SHOW_ACCOUNT_STATUS_NOT_APPROVED'; // Failed | ||
public const SHOW_ACCOUNT_STATUS_APPROVED = 'SHOW_ACCOUNT_STATUS_APPROVED'; // Passed | ||
public const SHOW_ACCOUNT_STATUS_IN_REVIEW = 'SHOW_ACCOUNT_STATUS_IN_REVIEW'; // Under review | ||
public const SHOW_ACCOUNT_STATUS_PUNISHED = 'SHOW_ACCOUNT_STATUS_PUNISHED'; // Punishment | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Promopult\TikTokMarketingApi\Enumeration; | ||
|
||
final class AdvertiserRole | ||
{ | ||
public const ROLE_ADVERTISER = 'ROLE_ADVERTISER'; // Standard advertiser (direct customer) | ||
public const ROLE_CHILD_ADVERTISER = 'ROLE_CHILD_ADVERTISER'; // Standard advertiser (agency sub-account) | ||
public const ROLE_CHILD_AGENT = 'ROLE_CHILD_AGENT'; // Secondary agency | ||
public const ROLE_AGENT = 'ROLE_AGENT'; // Primary agency | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Promopult\TikTokMarketingApi\Enumeration; | ||
|
||
final class BusinessCenterStatus | ||
{ | ||
public const REVIEWING = 'REVIEWING'; // Under review | ||
public const DENY = 'DENY'; // Rejected | ||
public const ENABLE = 'ENABLE'; // Passed | ||
public const PUNISH = 'PUNISH'; // Disabled | ||
} |
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,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Promopult\TikTokMarketingApi\Enumeration; | ||
|
||
final class BusinessCenterType | ||
{ | ||
public const NORMAL = 'NORMAL'; // General | ||
public const AGENCY = 'AGENCY'; // Agent | ||
public const DIRECT = 'DIRECT'; // Direct customer | ||
public const SELF_SERVICE = 'SELF_SERVICE'; // Self-service | ||
} |