@types/facebook-nodejs-business-sdk
Version:
TypeScript definitions for facebook-nodejs-business-sdk
24 lines (23 loc) • 637 B
TypeScript
import { AbstractCrudObject } from "./../abstract-crud-object";
/**
* ProfilePictureSource
* @see {@link https://developers.facebook.com/docs/marketing-api/}
*/
export default class ProfilePictureSource extends AbstractCrudObject {
static get Fields(): Readonly<{
bottom: "bottom";
cache_key: "cache_key";
height: "height";
is_silhouette: "is_silhouette";
left: "left";
right: "right";
top: "top";
url: "url";
width: "width";
}>;
static get Type(): Readonly<{
album: "album";
small: "small";
thumbnail: "thumbnail";
}>;
}