Interface CategorySetAssetTagsAction

All Superinterfaces:
CategoryUpdateAction, ResourceUpdateAction<CategoryUpdateAction>

public interface CategorySetAssetTagsAction extends CategoryUpdateAction
CategorySetAssetTagsAction
Example to create an instance using the builder pattern

     CategorySetAssetTagsAction categorySetAssetTagsAction = CategorySetAssetTagsAction.builder()
             .build()
 
  • Field Details

    • SET_ASSET_TAGS

      static final String SET_ASSET_TAGS
      discriminator value for CategorySetAssetTagsAction
      See Also:
  • Method Details

    • getAssetId

      String getAssetId()

      New value to set. Either assetId or assetKey is required.

      Returns:
      assetId
    • getAssetKey

      String getAssetKey()

      New value to set. Either assetId or assetKey is required.

      Returns:
      assetKey
    • getTags

      List<String> getTags()

      Keywords for categorizing and organizing Assets.

      Returns:
      tags
    • setAssetId

      void setAssetId(String assetId)

      New value to set. Either assetId or assetKey is required.

      Parameters:
      assetId - value to be set
    • setAssetKey

      void setAssetKey(String assetKey)

      New value to set. Either assetId or assetKey is required.

      Parameters:
      assetKey - value to be set
    • setTags

      void setTags(String... tags)

      Keywords for categorizing and organizing Assets.

      Parameters:
      tags - values to be set
    • setTags

      void setTags(List<String> tags)

      Keywords for categorizing and organizing Assets.

      Parameters:
      tags - values to be set
    • of

      factory method
      Returns:
      instance of CategorySetAssetTagsAction
    • of

      factory method to create a shallow copy CategorySetAssetTagsAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of CategorySetAssetTagsAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for CategorySetAssetTagsAction
      Returns:
      builder
    • builder

      create builder for CategorySetAssetTagsAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withCategorySetAssetTagsAction

      default <T> T withCategorySetAssetTagsAction(Function<CategorySetAssetTagsAction,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<CategorySetAssetTagsAction> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference