creativeFieldValue.setName(creativeFieldValueName);
creativeFieldValue.setCreativeFieldId(creativeFieldId);
// Save the creative field value.
CreativeFieldValueSaveResult creativeFieldValueSaveResult =
service.saveCreativeFieldValue(creativeFieldValue);
// Display the new creative field value ID.
System.out.printf("Creative field value with ID \"%s\" was created.%n",
creativeFieldValueSaveResult.getId());
}