com.smartcar.sdk.data.ActionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for the Smartcar platform
package com.smartcar.sdk.data;
public class ActionResponse extends ApiData {
private String status;
private String message;
public String getStatus() {
return this.status;
}
public String getMessage() { return this.message; }
@Override
public String toString() {
return this.getClass().getName()
+ "{"
+ "status="
+ status
+ ", message="
+ message
+ "}";
}
}