Hi All
I've created a new location (Alaska), and i would like to create for a new bid adjustment, as in the California geo, see the following:

Location location = new Location();
location.setId(1012873L);
location.getType();
CampaignCriterion Criterion = new CampaignCriterion();
Criterion.setCriterion(location);
Criterion.setCampaignId(Long.parseLong("242139610"));
CampaignCriterionOperation create = new CampaignCriterionOperation();
create.setOperand(Criterion);
create.setOperator(Operator.ADD);
CampaignCriterionOperation[] operations = new CampaignCriterionOperation[] {create};
campaignCriterionService.mutate(operations);

And i want to know how to add a bid adjustment, as the California geo, i tried to look in several services (campaign service, budget service ....) with no success
thanks for any help on that :)