Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 2.46 KB

v1badgetagrequestbody.md

File metadata and controls

32 lines (27 loc) · 2.46 KB

V1BadgeTagRequestBody

Example Usage

import { V1BadgeTagRequestBody } from "@steamsets/client-ts/models/components";

let value: V1BadgeTagRequestBody = {
  badgeId: "bdg_123",
  colors: [
    {
      id: "bdg_col_2r2pqaIpB1zllfZIvUE3OWadIOS",
      remove: true,
    },
  ],
  designs: [
    {
      id: "bdg_des_2r3yFWjSJzH89FKbYgpkJxF24ZL",
      name: "cat",
      remove: true,
    },
  ],
};

Fields

Field Type Required Description Example
badgeId string ✔️ The badge id bdg_123
colors components.SetRemoveColorTag[] ✔️ All the colors of the badge
designs components.SetRemoveDesignTag[] ✔️ All the designs of the badge