All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.orders.ReturnItem Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.orders;

import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import io.sphere.sdk.models.Timestamped;

import javax.annotation.Nullable;
import java.time.ZonedDateTime;

public class ReturnItem extends Base implements Timestamped {
    private final String id;
    private final Long quantity;
    private final String lineItemId;
    @Nullable
    private final String comment;
    private final ReturnShipmentState shipmentState;
    private final ReturnPaymentState paymentState;
    private final ZonedDateTime createdAt;
    private final ZonedDateTime lastModifiedAt;

    @JsonCreator
    private ReturnItem(final String id, final Long quantity, final String lineItemId, @Nullable final String comment, final ReturnShipmentState shipmentState, final ReturnPaymentState paymentState, final ZonedDateTime createdAt, final ZonedDateTime lastModifiedAt) {
        this.id = id;
        this.quantity = quantity;
        this.lineItemId = lineItemId;
        this.comment = comment;
        this.shipmentState = shipmentState;
        this.paymentState = paymentState;
        this.createdAt = createdAt;
        this.lastModifiedAt = lastModifiedAt;
    }

    public static ReturnItem of(final String id, final Long quantity, final String lineItemId, final String comment, final ReturnShipmentState shipmentState, final ReturnPaymentState paymentState, final ZonedDateTime createdAt, final ZonedDateTime lastModifiedAt) {
        return new ReturnItem(id, quantity, lineItemId, comment, shipmentState, paymentState, createdAt, lastModifiedAt);

    }

    public String getId() {
        return id;
    }

    public Long getQuantity() {
        return quantity;
    }

    public String getLineItemId() {
        return lineItemId;
    }

    @Nullable
    public String getComment() {
        return comment;
    }

    public ReturnShipmentState getShipmentState() {
        return shipmentState;
    }

    public ReturnPaymentState getPaymentState() {
        return paymentState;
    }

    @Override
    public ZonedDateTime getCreatedAt() {
        return createdAt;
    }

    @Override
    public ZonedDateTime getLastModifiedAt() {
        return lastModifiedAt;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy