Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 5.64 KB

developerapp.md

File metadata and controls

25 lines (20 loc) · 5.64 KB

DeveloperApp

Example Usage

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

let value: DeveloperApp = {
  apiKey: "api_123",
  description: "My App Description",
  environment: "production",
  id: "da_123456",
  name: "My App",
};

Fields

Field Type Required Description Example
apiKey string ✔️ : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.

The api key of the developer app
api_123
description string ✔️ The description of the developer app My App Description
environment components.DeveloperAppEnvironment ✔️ The environment of the developer app production
id string ✔️ The id of the developer app da_123456
name string ✔️ The name of the developer app My App