V1DeveloperAppCreateRequestBody Example Usage import { V1DeveloperAppCreateRequestBody } from "@steamsets/client-ts/models/components"; let value: V1DeveloperAppCreateRequestBody = { description: "Your App Description", environment: "production", generateKey: true, name: "Your App", }; Fields Field Type Required Description Example description string ✔️ The description of the app Your App Description environment components.Environment ✔️ The environment to create the app for production generateKey boolean ✔️ Whether to generate a key for the app true name string ✔️ The name of the app Your App