@isaac-platform/isaac-integration-sdk
Version:
A Typescript SDK for integrating with ISAAC
15 lines (14 loc) • 498 B
JavaScript
export class IsaacBlock {
constructor(definition) {
// this.id = definition.id
this.displayName = definition.displayName;
this.description = definition.description;
this.duration = definition.duration;
this.zone = definition.zone;
this._links = definition._links;
this.createdAt = definition.createdAt;
this.updatedAt = definition.updatedAt;
this.zoneId = definition.zoneId;
this.items = definition.items;
}
}