com.smartcar.sdk.data.VehicleWindow 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 VehicleWindow extends ApiData {
private String type;
private String status;
/**
* Returns the window type
*
* @return window type
*/
public String getType() {
return this.type;
}
/**
* Returns the window status
*
* @return window status
*/
public String getStatus() {
return this.status;
}
/**
* @return a stringified representation of VehicleWindow
*/
@Override
public String toString() {
return this.getClass().getName() + "{" + "type=" + type + ", status=" + status + '}';
}
}