Object that contains key details for an item that could be leveraged for reuse

interface IReuseItemInfo {
    created: number;
    solutions: IReuseSolutions;
    title: string;
    type: string;
}

Properties

created: number

The date/time the item was created

solutions: IReuseSolutions

A collection of key details from solutions that leverage this item

title: string

The title of the item that is already deployed

type: string

The type of item that is already deployed