You need to sign in to do that
Don't have an account?

Getting the following error when i am saving the apex class
Hi ,
I am getting the following compile error when saving the apex class
Compile Error: Invalid type: parkService.parksImplPort at line 3 column 1
And find below code:
public class ParkLocator{
public static String[] country(String country){
parkService.parksImplPort park= new parkService.parksImplPort();
String[] parksname = park.byCountry(country);
return parksname;
}
}

I am getting the following compile error when saving the apex class
Compile Error: Invalid type: parkService.parksImplPort at line 3 column 1
And find below code:
public class ParkLocator{
public static String[] country(String country){
parkService.parksImplPort park= new parkService.parksImplPort();
String[] parksname = park.byCountry(country);
return parksname;
}
}
Is parkservice another class? If yes, can you post that.
generally you create a apex object like this: https://www.tutorialspoint.com/apex/apex_objects.htm
Thx