/** 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 your app's plugin extensions in the Wix Dev Center. * @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[]; } export interface GetPlacementStatusResponseNonNullableFields { placementStatuses: PlacementStatus[]; }