com.genesys.workspace.models.cfg.SubCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workspace Show documentation
Show all versions of workspace Show documentation
A Java library to interface to Genesys Workspace public API
package com.genesys.workspace.models.cfg;
public class SubCode {
private String name;
private String code;
public SubCode(String name, String code) {
this.name = name;
this.code = code;
}
public String getName() {
return this.name;
}
public String getCode() {
return this.code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy