129 lines
3.8 KiB
PHP
129 lines
3.8 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;
|
|
|
|
use FacebookPixelPlugin\FacebookAds\ApiRequest;
|
|
use FacebookPixelPlugin\FacebookAds\Cursor;
|
|
use FacebookPixelPlugin\FacebookAds\Http\RequestInterface;
|
|
use FacebookPixelPlugin\FacebookAds\TypeChecker;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Fields\VideoCopyrightFields;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\VideoCopyrightContentCategoryValues;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\VideoCopyrightMonitoringTypeValues;
|
|
|
|
/**
|
|
* 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 VideoCopyright extends AbstractCrudObject {
|
|
|
|
/**
|
|
* @return VideoCopyrightFields
|
|
*/
|
|
public static function getFieldsEnum() {
|
|
return VideoCopyrightFields::getInstance();
|
|
}
|
|
|
|
protected static function getReferencedEnums() {
|
|
$ref_enums = array();
|
|
$ref_enums['ContentCategory'] = VideoCopyrightContentCategoryValues::getInstance()->getValues();
|
|
$ref_enums['MonitoringType'] = VideoCopyrightMonitoringTypeValues::getInstance()->getValues();
|
|
return $ref_enums;
|
|
}
|
|
|
|
|
|
public function getUpdateRecords(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
);
|
|
$enums = array(
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_GET,
|
|
'/update_records',
|
|
new MediaCopyrightUpdateRecord(),
|
|
'EDGE',
|
|
MediaCopyrightUpdateRecord::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function getSelf(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
);
|
|
$enums = array(
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_GET,
|
|
'/',
|
|
new VideoCopyright(),
|
|
'NODE',
|
|
VideoCopyright::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function updateSelf(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
'append_excluded_ownership_segments' => 'bool',
|
|
'attribution_id' => 'string',
|
|
'content_category' => 'content_category_enum',
|
|
'excluded_ownership_countries' => 'list<string>',
|
|
'excluded_ownership_segments' => 'list<Object>',
|
|
'is_reference_disabled' => 'bool',
|
|
'monitoring_type' => 'monitoring_type_enum',
|
|
'ownership_countries' => 'list<string>',
|
|
'rule_id' => 'string',
|
|
'whitelisted_ids' => 'list<string>',
|
|
'whitelisted_ig_user_ids' => 'list<string>',
|
|
);
|
|
$enums = array(
|
|
'content_category_enum' => VideoCopyrightContentCategoryValues::getInstance()->getValues(),
|
|
'monitoring_type_enum' => VideoCopyrightMonitoringTypeValues::getInstance()->getValues(),
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_POST,
|
|
'/',
|
|
new VideoCopyright(),
|
|
'NODE',
|
|
VideoCopyright::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
}
|