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
Etienne Gaudry 5Etienne Gaudry 5 

API to Everwin

Hi there,
I try to connect Salesforce to Everwin with API (when i create an account on salesforce, i need to create society on Everwin)

In my wrapper i have something like this :

public cls_region region;
class cls_region {
        public Integer id;	//0
        public String value;	//string
        public String href;	//string

How can i get id and href ?
And how can i populate value ?

I have try this in my method:

EU01AccountApiWrapper resWrap = new EU01AccountApiWrapper();
resWrap.region.value=acct.billingState;

But i have this error : Type is not visible: EU01AccountApiWrapper.cls_region

Ty :)