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

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

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

/**
 * Created by yossi.elman on 24/05/2020.
 */
public class ApiProcessSuspension {

    //region Members
    private String  name;
    private Integer ttlInMinutes;
    //endregion

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

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

    public Integer getTtlInMinutes() {
        return ttlInMinutes;
    }

    public void setTtlInMinutes(Integer ttlInMinutes) {
        this.ttlInMinutes = ttlInMinutes;
    }
    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy