function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
OscarOscar 

About Interface

Hi to all, where i can write interface?in develop i can write only apex classes....  like where i can write interfaces?

cloudsuccesscloudsuccess

I think you need to be looking at "Pages" i.e. Visualforce pages. Good luck.

RArunrajRArunraj

Hi,

 

AppSetup --> Develop --> Apex classes --> click new button --> copy and paste the below sample interface code and save it and check it.

 

public interface PurchaseOrder {

Double discount();

}

 

Thanks,

R. Arunraj