Class Shipment
java.lang.Object
de.bytestore.hostinger.entity.ecommerce.Shipment
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetId()voidsetCreatedBy(String createdBy) voidsetCreatedDate(OffsetDateTime createdDate) voidvoidsetLastModifiedBy(String lastModifiedBy) voidsetLastModifiedDate(OffsetDateTime lastModifiedDate) voidsetProvider(String provider) void
-
Constructor Details
-
Shipment
public Shipment()
-
-
Method Details
-
getProvider
-
setProvider
-
getStatus
-
setStatus
-
getLastModifiedDate
-
setLastModifiedDate
-
getLastModifiedBy
-
setLastModifiedBy
-
getCreatedDate
-
setCreatedDate
-
getCreatedBy
-
setCreatedBy
-
getId
-
setId
-