Interface EntityFieldConfigurationApi
public interface EntityFieldConfigurationApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<List<FieldConfigurationData>> getAddresses(String entity) Retrieves the Entity Field Configuration It retrieves all the Entity Field Configurationretrofit2.Call<List<FieldConfigurationData>> getAddresses(String entity, Map<String, String> headers) Retrieves the Entity Field Configuration It retrieves all the Entity Field Configuration
-
Method Details
-
getAddresses
@GET("v1/fieldconfiguration/{entity}") retrofit2.Call<List<FieldConfigurationData>> getAddresses(@Path("entity") String entity) Retrieves the Entity Field Configuration It retrieves all the Entity Field Configuration- Parameters:
entity- entity (required)- Returns:
- Call<List<FieldConfigurationData>>
-
getAddresses
@GET("v1/fieldconfiguration/{entity}") retrofit2.Call<List<FieldConfigurationData>> getAddresses(@Path("entity") String entity, @HeaderMap Map<String, String> headers) Retrieves the Entity Field Configuration It retrieves all the Entity Field Configuration- Parameters:
entity- entity (required)- Returns:
- Call<List<FieldConfigurationData>>
-