Class ProvidersCatalogEntry.Builder
-
- All Implemented Interfaces:
public final class ProvidersCatalogEntry.BuilderA builder for ProvidersCatalogEntry.
-
-
Method Summary
-
-
Method Detail
-
channel
final ProvidersCatalogEntry.Builder channel(String channel)
Courier taxonomy channel (e.g. email, push, sms, direct_message, inbox, webhook).
-
channel
final ProvidersCatalogEntry.Builder channel(JsonField<String> channel)
Sets Builder.channel to an arbitrary JSON value.
You should usually call Builder.channel with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
description
final ProvidersCatalogEntry.Builder description(String description)
Short description of the provider.
-
description
final ProvidersCatalogEntry.Builder description(JsonField<String> description)
Sets Builder.description to an arbitrary JSON value.
You should usually call Builder.description with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final ProvidersCatalogEntry.Builder name(String name)
Human-readable display name.
-
name
final ProvidersCatalogEntry.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
provider
final ProvidersCatalogEntry.Builder provider(String provider)
The provider key (e.g. "sendgrid", "twilio").
-
provider
final ProvidersCatalogEntry.Builder provider(JsonField<String> provider)
Sets Builder.provider to an arbitrary JSON value.
You should usually call Builder.provider with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
settings
final ProvidersCatalogEntry.Builder settings(ProvidersCatalogEntry.Settings settings)
Map of setting field names (snake_case) to their schema descriptors. Each descriptor has
typeandrequired. Empty when the provider has no configurable schema.
-
settings
final ProvidersCatalogEntry.Builder settings(JsonField<ProvidersCatalogEntry.Settings> settings)
Sets Builder.settings to an arbitrary JSON value.
You should usually call Builder.settings with a well-typed Settings value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ProvidersCatalogEntry.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ProvidersCatalogEntry.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ProvidersCatalogEntry.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ProvidersCatalogEntry.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ProvidersCatalogEntry.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ProvidersCatalogEntry build()
Returns an immutable instance of ProvidersCatalogEntry.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.channel() .description() .name() .provider() .settings()
-
-
-
-