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

com.revinate.ship.gueststay.StayLength Maven / Gradle / Ivy

package com.revinate.ship.gueststay;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;

@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@ToString
public class StayLength {

    public enum StayLengthUnits {
        DAY
    }

    @JsonProperty(required = true)
    private Integer stayLength;
    private StayLengthUnits stayLengthUnits;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy