/** The `PlacementStatus` object represents the status of your app's site plugins, indicating whether they are currently placed in a slot on the user's site. */ export interface PlacementStatus { /** * Plugin ID. This is a unique ID that is assigned to each plugin. You can view your plugin IDs in [extensions](https://dev.wix.com/app-selector?title=Select+an+App&primaryButtonText=Select+Site&actionUrl=https%3A%2F%2Fdev.wix.com%2Fapps%2F%7BappId%7D%2Fextensions) in your app's dashboard. * @readonly */ pluginId?: string | null; /** * Whether the plugin placed in a slot on the user's site. * @readonly */ placedInSlot?: boolean | null; } export interface GetPlacementStatusRequest { } export interface GetPlacementStatusResponse { /** Data about placement statuses of your app's site plugins on the user's site. */ placementStatuses?: PlacementStatus[]; }