asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
36 lines (35 loc) • 970 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapTimeZoneInfoData: {};
/**
* Class to specify TimeZoneInfo parameters.
*/
export declare class TimeZoneInfoData implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets base utc offset in hh:mm:ss format.
*/
baseUtcOffset: string;
/**
* Gets or sets display name.
*/
displayName: string;
/**
* Gets or sets an Id string for CustomTimeZoneInfo.
*/
id: string;
/**
* Gets or sets standard display name.
*/
standardDisplayName: string;
constructor(init?: Partial<TimeZoneInfoData>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}