@xompass/sdk-cloud-api
Version:
Xompass Client for cloud-api
50 lines (49 loc) • 1.25 kB
TypeScript
import { ModelDefinition } from './BaseModels';
import { Log } from './Log';
export interface TimeZoneInterface {
value: string;
abbr: string;
offset: number;
isdst: boolean;
text: string;
utc?: Array<any>;
created?: Date;
modified?: Date;
deleted?: Date;
id?: any;
trackingLogs?: Log[];
}
export declare class TimeZone implements TimeZoneInterface {
value: string;
abbr: string;
offset: number;
isdst: boolean;
text: string;
utc: Array<any>;
created: Date;
modified: Date;
deleted: Date;
id: any;
trackingLogs?: Log[];
constructor(data?: TimeZoneInterface);
/**
* The name of the model represented by this $resource,
* i.e. `TimeZone`.
*/
static getModelName(): string;
/**
* @method factory
* @author Jonathan Casarrubias
* @license MIT
* This method creates an instance of TimeZone for dynamic purposes.
*/
static factory(data: TimeZoneInterface): TimeZone;
/**
* @method getModelDefinition
* @author Julien Ledun
* @license MIT
* This method returns an object that represents some of the model
* definitions.
*/
static getModelDefinition(): ModelDefinition;
}