/** * Constructor to create a GeoAreaSvcGrpMemberDeleteNoOpRequest * * @param id Unique request name * @param noOpIn Simulated response object */ public GeoAreaSvcGrpMemberDeleteNoOpRequest(String id, GASGMObjData noOpIn) { super(id, "GeoAreaSvcGrpMemberDeleteNoOpRequest"); if (noOpIn != null) { addInput( "GeoAreaSvcGrpMember", GASGMObjHelper.toMap(noOpIn, new HashMap(), "GeoAreaSvcGrpMember") .get("GeoAreaSvcGrpMember")); } }
/** * Retrieves the GASGMObjData passed into the constructor * * @return Simulated response */ public GASGMObjData getOutput() { return GASGMObjHelper.fromMap(outputMap, "GeoAreaSvcGrpMember"); }