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

com.spotinst.sdkjava.model.ApiSuspendProcessesRequest 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 com.fasterxml.jackson.annotation.JsonInclude;

import java.util.List;

/**
 * Created by yossi.elman on 24/05/2020.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
class ApiSuspendProcessesRequest {
    //region Members
    private List suspensions;
    //endregion

    //region Getters & Setters
    public List getSuspensions() {
        return suspensions;
    }

    public void setSuspensions(List suspensions) {
        this.suspensions = suspensions;
    }
    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy