facebook-nodejs-business-sdk
Version:
SDK for the Facebook Marketing API in Javascript and Node.js
37 lines (33 loc) • 930 B
JavaScript
/*
* 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.
*
* @flow
*/
import {AbstractCrudObject} from './../abstract-crud-object';
/**
* ProductItemLandingPageData
* @extends AbstractCrudObject
* @see {@link https://developers.facebook.com/docs/marketing-api/}
*/
export default class ProductItemLandingPageData extends AbstractCrudObject {
static get Fields (): Object {
return Object.freeze({
availability: 'availability',
});
}
static get Availability (): Object {
return Object.freeze({
available_for_order: 'available for order',
discontinued: 'discontinued',
in_stock: 'in stock',
mark_as_sold: 'mark_as_sold',
out_of_stock: 'out of stock',
pending: 'pending',
preorder: 'preorder',
});
}
}