Grant_Templates.ttcn 998 Bytes
Newer Older
module Grant_Templates {
  
    // JSON
    import from JSON all;
  
    // LibCommon
    import from LibCommon_BasicTypesAndValues all;
  
    import from Grant_TypesAndValues all;
    import from Grant_Pixits all;
  
  
    template (value) GrantRequest m_grant_request (
    	in String p_app_instance_id := PX_APP_INSTANCE_ID,
    	in Operation_type p_app_operation := PX_APP_OPERATION 
    ) := {
      appInstanceId := p_app_instance_id,
      operation	:=	p_app_operation
    }
    
    
    template (present) Grant	mw_grant_response (
    	in String p_app_instance_id := PX_APP_INSTANCE_ID
    ) := {
      appInstanceId := p_app_instance_id
    }
    
    template (value) GrantRequestWithError m_grant_request_with_error (
    	in String p_app_instance_id := PX_APP_INSTANCE_ID,
    	in Operation_type_error p_app_operation := PX_APP_OPERATION_ERROR
    ) := {
      appInstanceId := p_app_instance_id,
      operation	:=	p_app_operation
    }
  
} // End of module LocationAPI_Templates