Interface Category.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Category.Builder,Category>,SdkBuilder<Category.Builder,Category>,SdkPojo
- Enclosing class:
- Category
public static interface Category.Builder extends SdkPojo, CopyableBuilder<Category.Builder,Category>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Category.Builderid(String id)The category ID.Category.BuilderlocalizedName(String localizedName)Localized name of the category type.Category.Buildername(String name)The category name.Category.Builderprimary(Boolean primary)Boolean which indicates if this category is the primary offered by the place.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
id
Category.Builder id(String id)
The category ID.
- Parameters:
id- The category ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Category.Builder name(String name)
The category name.
- Parameters:
name- The category name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
localizedName
Category.Builder localizedName(String localizedName)
Localized name of the category type.
- Parameters:
localizedName- Localized name of the category type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primary
Category.Builder primary(Boolean primary)
Boolean which indicates if this category is the primary offered by the place.
- Parameters:
primary- Boolean which indicates if this category is the primary offered by the place.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-