Interface ImportWaitForMasterVariantEventData


public interface ImportWaitForMasterVariantEventData

The data of the Import Wait For Master Variant Event.


Example to create an instance using the builder pattern

     ImportWaitForMasterVariantEventData importWaitForMasterVariantEventData = ImportWaitForMasterVariantEventData.builder()
             .id("{id}")
             .version(1)
             .importContainerKey("{importContainerKey}")
             .build()
 
  • Method Details

    • getId

      @NotNull @NotNull String getId()

      The id of the Import Operation with the waitForMasterVariant state.

      Returns:
      id
    • getVersion

      @NotNull @NotNull Integer getVersion()

      The version of the Import Operation with the waitForMasterVariant state.

      Returns:
      version
    • getImportContainerKey

      @NotNull @NotNull String getImportContainerKey()

      The key of the Import Container.

      Returns:
      importContainerKey
    • setId

      void setId(String id)

      The id of the Import Operation with the waitForMasterVariant state.

      Parameters:
      id - value to be set
    • setVersion

      void setVersion(Integer version)

      The version of the Import Operation with the waitForMasterVariant state.

      Parameters:
      version - value to be set
    • setImportContainerKey

      void setImportContainerKey(String importContainerKey)

      The key of the Import Container.

      Parameters:
      importContainerKey - value to be set
    • of

      factory method
      Returns:
      instance of ImportWaitForMasterVariantEventData
    • of

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

    • deepCopy

      @Nullable static ImportWaitForMasterVariantEventData deepCopy(@Nullable ImportWaitForMasterVariantEventData template)
      factory method to create a deep copy of ImportWaitForMasterVariantEventData
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for ImportWaitForMasterVariantEventData
      Returns:
      builder
    • builder

      create builder for ImportWaitForMasterVariantEventData instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withImportWaitForMasterVariantEventData

      default <T> T withImportWaitForMasterVariantEventData(Function<ImportWaitForMasterVariantEventData,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<ImportWaitForMasterVariantEventData> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference