11 lines
429 B
TypeScript
11 lines
429 B
TypeScript
import { String } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDesc } from 'oak-domain/lib/types';
|
|
import { Schema as System } from 'oak-general-business/lib/entities/System';
|
|
export interface Schema extends EntityShape {
|
|
payNotifyUrl: String<128>;
|
|
refundNotifyUrl: String<128>;
|
|
system: System;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|