
com.sendsafely.dto.response.CreateDirectoryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sendsafely-java-api Show documentation
Show all versions of sendsafely-java-api Show documentation
The SendSafely Client API allows programmatic access to SendSafely and provides a layer of abstraction from our REST API, which requires developers to perform several complex tasks in a correct manner.
package com.sendsafely.dto.response;
public class CreateDirectoryResponse extends BaseResponse {
private String directoryId;
private String directoryName;
public String getDirectoryId() {
return directoryId;
}
public void setDirectoryId(String directoryId) {
this.directoryId = directoryId;
}
public String getDirectoryName() {
return directoryName;
}
public void setContactGroupName(String directoryName) {
this.directoryName = directoryName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy