Files
2026-04-28 15:13:50 +02:00

55 lines
2.0 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\Fields;
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.
*
*/
class RegionalRegulationIdentitiesFields extends AbstractEnum {
const AUSTRALIA_FINSERV_BENEFICIARY = 'australia_finserv_beneficiary';
const AUSTRALIA_FINSERV_PAYER = 'australia_finserv_payer';
const INDIA_FINSERV_BENEFICIARY = 'india_finserv_beneficiary';
const INDIA_FINSERV_PAYER = 'india_finserv_payer';
const SINGAPORE_UNIVERSAL_BENEFICIARY = 'singapore_universal_beneficiary';
const SINGAPORE_UNIVERSAL_PAYER = 'singapore_universal_payer';
const TAIWAN_FINSERV_BENEFICIARY = 'taiwan_finserv_beneficiary';
const TAIWAN_FINSERV_PAYER = 'taiwan_finserv_payer';
const TAIWAN_UNIVERSAL_BENEFICIARY = 'taiwan_universal_beneficiary';
const TAIWAN_UNIVERSAL_PAYER = 'taiwan_universal_payer';
const UNIVERSAL_BENEFICIARY = 'universal_beneficiary';
const UNIVERSAL_PAYER = 'universal_payer';
public function getFieldTypes() {
return array(
'australia_finserv_beneficiary' => 'string',
'australia_finserv_payer' => 'string',
'india_finserv_beneficiary' => 'string',
'india_finserv_payer' => 'string',
'singapore_universal_beneficiary' => 'string',
'singapore_universal_payer' => 'string',
'taiwan_finserv_beneficiary' => 'string',
'taiwan_finserv_payer' => 'string',
'taiwan_universal_beneficiary' => 'string',
'taiwan_universal_payer' => 'string',
'universal_beneficiary' => 'string',
'universal_payer' => 'string',
);
}
}