Interface IBrandUpdate

interface IBrandUpdate {
    op: "replace" | "add" | "renew";
    path: "name" | "description";
    value: string;
}

Properties

Properties

op: "replace" | "add" | "renew"
path: "name" | "description"
value: string