You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
614 B
TypeScript
21 lines
614 B
TypeScript
import { Response } from './response';
|
|
|
|
export class NotificationGetAttachResponse extends Response {
|
|
public static SHARED_DATA = '';
|
|
public SEQ_NUM = 0;// Int
|
|
public FILE_NAME = '';//String
|
|
public FILE_DATA = '';//base64
|
|
public PK1_VALUE = '';//String
|
|
public PK2_VALUE = '';//String
|
|
public PK3_VALUE = '';//String
|
|
public PK4_VALUE = '';//String
|
|
public FILE_CONTENT_TYPE = '';//String
|
|
public ATTACHED_DOCUMENT_ID = 0;//Int
|
|
public DOCUMENT_ID = 0;//Int
|
|
public CATEGORY_ID = 0;//Int
|
|
public DATATYPE_ID = 0;//Int
|
|
public ENTITY_NAME = '';//String
|
|
public FILE_ID = 0;//Int
|
|
public PK5_VALUE = '';//String
|
|
|
|
} |