UNPKG

apim-developer-portal1

Version:

API management developer portal

28 lines (25 loc) 663 B
import { ArmResource } from "./armResource"; export interface SubscriptionContract extends ArmResource { properties: { displayName: string; createdDate: string; endDate: string; expirationDate: string; notificationDate: string; primaryKey: string; scope: string; secondaryKey: string; startDate: string; state: string; stateComment: string; ownerId: string; } } export enum SubscriptionState { suspended = "Suspended", active = "Active", expired = "Expired", submitted = "Submitted", rejected = "Rejected", cancelled = "Cancelled" }