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

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

There is a newer version: 4.6.0
Show newest version
package com.smartcar.sdk.data;

public class WebhookSubscription extends ApiData {
    private String webhookId;
    private String vehicleId;

    public String getWebhookId() {
        return webhookId;
    }

    public String getVehicleId() {
        return vehicleId;
    }

    @Override
    public String toString() {
        return this.getClass().getName()
                + "{"
                + "webhookId="
                + webhookId
                + ", vehicleId="
                + vehicleId
                + "}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy