-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: ignore-conflict-markers Reviewed By: stcheng Differential Revision: D50948236 fbshipit-source-id: 631bc21751f943b0f6bf6fed31caab3b7051d380
- Loading branch information
1 parent
eb61b29
commit bf538a2
Showing
37 changed files
with
531 additions
and
80 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
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
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
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
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
65 changes: 65 additions & 0 deletions
65
src/FacebookAds/Object/CTXPartnerAppWelcomeMessageFlow.php
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,65 @@ | ||
<?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 FacebookAds\Object; | ||
|
||
use FacebookAds\ApiRequest; | ||
use FacebookAds\Cursor; | ||
use FacebookAds\Http\RequestInterface; | ||
use FacebookAds\TypeChecker; | ||
use FacebookAds\Object\Fields\CTXPartnerAppWelcomeMessageFlowFields; | ||
|
||
/** | ||
* 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 CTXPartnerAppWelcomeMessageFlow extends AbstractCrudObject { | ||
|
||
/** | ||
* @return CTXPartnerAppWelcomeMessageFlowFields | ||
*/ | ||
public static function getFieldsEnum() { | ||
return CTXPartnerAppWelcomeMessageFlowFields::getInstance(); | ||
} | ||
|
||
protected static function getReferencedEnums() { | ||
$ref_enums = array(); | ||
return $ref_enums; | ||
} | ||
|
||
|
||
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 CTXPartnerAppWelcomeMessageFlow(), | ||
'NODE', | ||
CTXPartnerAppWelcomeMessageFlow::getFieldsEnum()->getValues(), | ||
new TypeChecker($param_types, $enums) | ||
); | ||
$request->addParams($params); | ||
$request->addFields($fields); | ||
return $pending ? $request : $request->execute(); | ||
} | ||
|
||
} |
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
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
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
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
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
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
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
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
Oops, something went wrong.