/**
* Copyright 2012 GroupDocs.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.groupdocs.sdk.model;
/**
*
* <p>
* NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
*
*/
public class SignatureEnvelopeAuditLogInfo {
private String id = null;
private Integer type = null;
private String date = null;
private String userName = null;
private String action = null;
private String remoteAddress = null;
private String details = null;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public String getRemoteAddress() {
return remoteAddress;
}
public void setRemoteAddress(String remoteAddress) {
this.remoteAddress = remoteAddress;
}
public String getDetails() {
return details;
}
public void setDetails(String details) {
this.details = details;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SignatureEnvelopeAuditLogInfo {\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" type: ").append(type).append("\n");
sb.append(" date: ").append(date).append("\n");
sb.append(" userName: ").append(userName).append("\n");
sb.append(" action: ").append(action).append("\n");
sb.append(" remoteAddress: ").append(remoteAddress).append("\n");
sb.append(" details: ").append(details).append("\n");
sb.append("}\n");
return sb.toString();
}
}