src/app/streams/model/stream-deploy-config.ts
Represents a Stream Deploy Config.
Properties |
constructor()
|
apps |
apps:
|
Type : any
|
deployers |
deployers:
|
Type : any
|
id |
id:
|
Type : string
|
platform |
platform:
|
Type : any
|
export class StreamDeployConfig {
id: string;
platform: any;
deployers: any;
apps: any;
constructor() {
}
}