All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartcar.sdk.data.ActionResponse Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
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
                + "}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy