36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
namespace FacebookPixelPlugin\FacebookAds\Object\Values;
|
|
|
|
use FacebookPixelPlugin\FacebookAds\Enum\AbstractEnum;
|
|
|
|
/**
|
|
* This class is auto-generated.
|
|
*
|
|
* For any issues or feature requests related to this class, please let us know
|
|
* on github and we'll fix in our codegen framework. We'll not be able to accept
|
|
* pull request for this class.
|
|
*
|
|
* @method static AdCreativeVideoDataCustomOverlaySpecOptionValues getInstance()
|
|
*/
|
|
class AdCreativeVideoDataCustomOverlaySpecOptionValues extends AbstractEnum {
|
|
|
|
const BANK_TRANSFER = 'bank_transfer';
|
|
const BOLETO = 'boleto';
|
|
const CASH_ON_DELIVERY = 'cash_on_delivery';
|
|
const DISCOUNT_WITH_BOLETO = 'discount_with_boleto';
|
|
const FAST_DELIVERY = 'fast_delivery';
|
|
const FREE_SHIPPING = 'free_shipping';
|
|
const HOME_DELIVERY = 'home_delivery';
|
|
const INVENTORY = 'inventory';
|
|
const PAY_AT_HOTEL = 'pay_at_hotel';
|
|
const PAY_ON_ARRIVAL = 'pay_on_arrival';
|
|
}
|