com.smartcar.sdk.data.ResponsePagingCursor 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;
/** POJO for the response paging w/cursor object */
public class ResponsePagingCursor extends ApiData {
private String cursor;
/**
* Returns the response cursor
*
* @return response cursor
*/
public String getCursor() {
return this.cursor;
}
/** @return a stringified representation of ResponsePagingCursor */
@Override
public String toString() {
return this.getClass().getName() + "{" + "cursor=" + cursor + '}';
}
}