/**
 * A response containing a resource ID
 */
type Resource = {
    /**
     * Id of the resource
     */
    id: string;
};

export type { Resource };
