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.
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
|
7 years ago
|
import {Response} from './response'
|
||
|
|
export class AbsenceDffResponse extends Response{
|
||
|
|
public static SHARED_DATA = 'absence_dff_resp';
|
||
|
|
public P_TRANSACTION_ID:number;
|
||
|
|
public APPLICATION_COLUMN_NAME:string;
|
||
|
|
public USED_FLAG:string;
|
||
|
|
public DESC_FLEX_NAME:string;
|
||
|
|
public DESC_FLEX_CONTEXT_CODE:string;
|
||
|
|
public DESC_FLEX_CONTEXT_NAME:string;
|
||
|
|
public SEGMENT_SEQ_NUM:number;
|
||
|
|
public SEGMENT_NAME:string;
|
||
|
|
public SEGMENT_PROMPT:string;
|
||
|
|
public ENABLED_FLAG:string;
|
||
|
|
public REQUIRED_FLAG:string;
|
||
|
|
public DISPLAY_FLAG :string;
|
||
|
|
public READ_ONLY:string;
|
||
|
|
public DEFAULT_TYPE:string;
|
||
|
|
public DEFAULT_VALUE:string;
|
||
|
|
public LONGLIST_FLAG:string;
|
||
|
|
public FLEX_VALUE_SET_NAME:string;
|
||
|
|
public VALIDATION_TYPE :string;
|
||
|
|
public VALIDATION_TYPE_DSP :string;
|
||
|
|
public FORMAT_TYPE :string;
|
||
|
|
public FORMAT_TYPE_DSP :string;
|
||
|
|
public MAXIMUM_SIZE: number;
|
||
|
|
public ALPHANUMERIC_ALLOWED_FLAG :string;
|
||
|
|
public UPPERCASE_ONLY_FLAG :string;
|
||
|
|
public NUMERIC_MODE_ENABLED_FLAG:string;
|
||
|
|
public NUMBER_PRECISION :string;
|
||
|
|
public MINIMUM_VALUE :string;
|
||
|
|
public MAXIMUM_VALUE :string;
|
||
|
|
public PARENT_SEGMENTS_VS :string;
|
||
|
|
public PARENT_SEGMENTS_DV :string;
|
||
|
|
public MOBILE_ENABLED :string;
|
||
|
|
public CHILD_SEGMENTS_DV :string;
|
||
|
|
public PARENT_SEGMENTS_VS_SplitedVS:any;
|
||
|
|
public CHILD_SEGMENTS_VS_Splited:any;
|
||
|
|
public CHILD_SEGMENTS_VS:string;
|
||
|
|
public PARENT_SEGMENTS_DV_Splited: any;
|
||
|
|
public CHILD_SEGMENTS_DV_Splited: any;
|
||
|
|
}
|