com.sap.cloud.sdk.service.prov.model.internal.CSNOperationModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
SAP Cloud Platform SDK for service development
/*******************************************************************************
* (c) 201X SAP SE or an SAP affiliate company. All rights reserved.
******************************************************************************/
package com.sap.cloud.sdk.service.prov.model.internal;
import java.util.ArrayList;
import java.util.List;
public class CSNOperationModel {
private String name = "";
private List params = new ArrayList<>();
private Object returns = null;
private String parentService = "";
public String getParentService() {
return parentService;
}
public void setParentService(String parentService) {
this.parentService = parentService;
}
public Object getReturns() {
return returns;
}
public void setReturns(Object returns) {
this.returns = returns;
}
public List getParams() {
return params;
}
public void setParams(List params) {
this.params = params;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy