facebook-nodejs-business-sdk
Version:
SDK for the Facebook Marketing API in Javascript and Node.js
35 lines (31 loc) • 1.09 kB
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';
/**
* LiveVideoAdBreakConfig
* @extends AbstractCrudObject
* @see {@link https://developers.facebook.com/docs/marketing-api/}
*/
export default class LiveVideoAdBreakConfig extends AbstractCrudObject {
static get Fields (): Object {
return Object.freeze({
default_ad_break_duration: 'default_ad_break_duration',
failure_reason_polling_interval: 'failure_reason_polling_interval',
first_break_eligible_secs: 'first_break_eligible_secs',
guide_url: 'guide_url',
is_eligible_to_onboard: 'is_eligible_to_onboard',
is_enabled: 'is_enabled',
onboarding_url: 'onboarding_url',
preparing_duration: 'preparing_duration',
time_between_ad_breaks_secs: 'time_between_ad_breaks_secs',
viewer_count_threshold: 'viewer_count_threshold',
});
}
}