Class Shipment

java.lang.Object
de.bytestore.hostinger.entity.ecommerce.Shipment

@Entity(name="host_Shipment") public class Shipment extends Object
Represents a shipment entity in the system. The shipment contains details about the provider and its status. It includes metadata about its creation and last modification. Properties: - id: Unique identifier for the shipment. - provider: The name of the shipment provider. - status: The current status of the shipment. - createdBy: The user who created this shipment record. - createdDate: The timestamp when this shipment record was created. - lastModifiedBy: The user who last modified this shipment record. - lastModifiedDate: The timestamp when this shipment was last modified.
  • Constructor Details

    • Shipment

      public Shipment()
  • Method Details

    • getProvider

      public String getProvider()
    • setProvider

      public void setProvider(String provider)
    • getStatus

      public String getStatus()
    • setStatus

      public void setStatus(String status)
    • getLastModifiedDate

      public OffsetDateTime getLastModifiedDate()
    • setLastModifiedDate

      public void setLastModifiedDate(OffsetDateTime lastModifiedDate)
    • getLastModifiedBy

      public String getLastModifiedBy()
    • setLastModifiedBy

      public void setLastModifiedBy(String lastModifiedBy)
    • getCreatedDate

      public OffsetDateTime getCreatedDate()
    • setCreatedDate

      public void setCreatedDate(OffsetDateTime createdDate)
    • getCreatedBy

      public String getCreatedBy()
    • setCreatedBy

      public void setCreatedBy(String createdBy)
    • getId

      public UUID getId()
    • setId

      public void setId(UUID id)