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

com.spotinst.sdkjava.model.ApiProcessSuspensionResult Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import java.util.Date;

/**
 * Created by yossi.elman on 24/05/2020.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
class ApiProcessSuspensionResult {

    //region Members
    private String name;
    private Date   expiresAt;
    //endregion

    //region Getter and Setter methods
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Date getExpiresAt() {
        return expiresAt;
    }

    public void setExpiresAt(Date expiresAt) {
        this.expiresAt = expiresAt;
    }
    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy