UNPKG

@sourceloop/ctrl-plane-tenant-management-service

Version:

Tenant Management microservice for SaaS control plane

22 lines (18 loc) 407 B
import {Model, model, property} from '@loopback/repository'; @model({ description: 'model describing payload used to provision resources for a tenant', }) export class ProvisioningDTO extends Model { @property({ type: 'string', }) subscriptionId?: string; @property({ type: 'string', }) chargeId?: string; constructor(data?: Partial<ProvisioningDTO>) { super(data); } }