18 lines
442 B
C#
18 lines
442 B
C#
|
namespace KwaiAds.Scripts.Api
|
|||
|
{
|
|||
|
public static class Constants
|
|||
|
{
|
|||
|
public static class Request
|
|||
|
{
|
|||
|
public const string BID_FLOOR_PRICE = "bidfloor";
|
|||
|
public const string BID_FLOOR_CURRENCY = "bidfloorcur";
|
|||
|
public const string MEDIATION_TYPE = "knMediationType";
|
|||
|
}
|
|||
|
|
|||
|
public static class Currency
|
|||
|
{
|
|||
|
public static string USD = "USD";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|