ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
18 lines (17 loc) • 618 B
TypeScript
import { BaseModuleEntity } from '../base/baseModuleEntity';
import { SmsMainApiPathAndApiNumberModel } from './smsMainApiPathAndApiNumberModel';
export declare class SmsMainApiNumberModel extends BaseModuleEntity<string> {
numberChar: string;
accessUseStartDate: Date;
expireDate: Date;
lastUseOfDate: Date;
saleStatus: boolean;
isPublic: boolean;
priority?: number;
deliveryRelayStatus: boolean;
deliveryRelayUrl: string;
smsRelayStatus: boolean;
smsRelayUrl: string;
actionMemo: string;
apiPathAndApiNumbers: SmsMainApiPathAndApiNumberModel[];
}