Skip to content

Files

39 lines (34 loc) · 2.06 KB

badgev1tagresponse.md

File metadata and controls

39 lines (34 loc) · 2.06 KB

BadgeV1TagResponse

Example Usage

import { BadgeV1TagResponse } from "@steamsets/client-ts/models/operations";

let value: BadgeV1TagResponse = {
  httpMeta: {
    response: new Response("{\"message\": \"hello world\"}", {
      headers: { "Content-Type": "application/json" },
    }),
    request: new Request("https://example.com"),
  },
  v1BadgeTagResponseBody: {
    dollarSchema:
      "https://api.steamsets.com/schemas/V1BadgeTagResponseBody.json",
    colorTags: [
      {
        id: "<id>",
        name: "<value>",
      },
    ],
    designTags: [
      {
        id: "<id>",
        name: "<value>",
      },
    ],
  },
};

Fields

Field Type Required Description
httpMeta components.HTTPMetadata ✔️ N/A
v1BadgeTagResponseBody components.V1BadgeTagResponseBody OK