Class CatalogListParams
-
- All Implemented Interfaces:
-
com.courier.core.Params
public final class CatalogListParams implements Params
Returns the catalog of available provider types with their display names, descriptions, and configuration schema fields (snake_case, with
typeandrequired). Providers with no configurable schema return onlyprovider,name, anddescription.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classCatalogListParams.BuilderA builder for CatalogListParams.
-
Method Summary
Modifier and Type Method Description final Optional<String>channel()Exact match (case-insensitive) against the provider channel taxonomy (e.g. final Optional<String>keys()Comma-separated provider keys to filter by (e.g. final Optional<String>name()Case-insensitive substring match against the provider display name. final Headers_additionalHeaders()Additional headers to send with the request. final QueryParams_additionalQueryParams()Additional query param to send with the request. final CatalogListParams.BuildertoBuilder()Headers_headers()The full set of headers in the parameters, including both fixed and additional headers. QueryParams_queryParams()The full set of query params in the parameters, including both fixed and additional query params. Booleanequals(Object other)IntegerhashCode()StringtoString()final static CatalogListParamsnone()final static CatalogListParams.Builderbuilder()Returns a mutable builder for constructing an instance of CatalogListParams. -
-
Method Detail
-
channel
final Optional<String> channel()
Exact match (case-insensitive) against the provider channel taxonomy (e.g.
email,sms,push).
-
keys
final Optional<String> keys()
Comma-separated provider keys to filter by (e.g.
sendgrid,twilio).
-
name
final Optional<String> name()
Case-insensitive substring match against the provider display name.
-
_additionalHeaders
final Headers _additionalHeaders()
Additional headers to send with the request.
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
Additional query param to send with the request.
-
toBuilder
final CatalogListParams.Builder toBuilder()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
none
final static CatalogListParams none()
-
builder
final static CatalogListParams.Builder builder()
Returns a mutable builder for constructing an instance of CatalogListParams.
-
-
-
-