@xompass/sdk-cloud-api
Version:
Xompass Client for cloud-api
56 lines (55 loc) • 1.48 kB
TypeScript
import { ModelDefinition } from './BaseModels';
import { Log } from './Log';
import { Storyline } from './Storyline';
import { Asset } from './Asset';
export interface StorypointInterface {
name: string;
storypointDate: Date;
description?: string;
relatedFiles?: Array<any>;
created?: Date;
modified?: Date;
deleted?: Date;
id?: any;
storylineId?: any;
assetId?: any;
trackingLogs?: Log[];
storyline?: Storyline;
asset?: Asset;
}
export declare class Storypoint implements StorypointInterface {
name: string;
storypointDate: Date;
description: string;
relatedFiles: Array<any>;
created: Date;
modified: Date;
deleted: Date;
id: any;
storylineId: any;
assetId: any;
trackingLogs?: Log[];
storyline?: Storyline;
asset?: Asset;
constructor(data?: StorypointInterface);
/**
* The name of the model represented by this $resource,
* i.e. `Storypoint`.
*/
static getModelName(): string;
/**
* @method factory
* @author Jonathan Casarrubias
* @license MIT
* This method creates an instance of Storypoint for dynamic purposes.
*/
static factory(data: StorypointInterface): Storypoint;
/**
* @method getModelDefinition
* @author Julien Ledun
* @license MIT
* This method returns an object that represents some of the model
* definitions.
*/
static getModelDefinition(): ModelDefinition;
}