facebook-nodejs-business-sdk
Version:
SDK for the Facebook Marketing API in Javascript and Node.js
29 lines (25 loc) • 717 B
JavaScript
/**
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the
* LICENSE file in the root directory of this source tree.
* @flow
*/
/**
* Utils contains the Utility modules used for sending Signal Events
*/
export default class Utils {
/**
* construct set method return
* @param any server_return
* @param any bdapi_return
* @return {Object} combined server field and business data field return
*/
static constructResponse(server_return: any, bdapi_return: any): Object {
return {
'conversion_api': server_return,
'business_data_api': bdapi_return,
}
}
}