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

com.route4me.sdk.services.activities.Activity Maven / Gradle / Ivy

Go to download

>This SDK makes it easier for you use the Route4Me API, which creates optimally sequenced driving routes for many drivers.

There is a newer version: 1.15.0
Show newest version
package com.route4me.sdk.services.activities;

import com.google.gson.annotations.SerializedName;
import com.route4me.sdk.services.users.User;
import lombok.Data;

@Data
public class Activity {

    @SerializedName("activity_id")
    private String Id;
    @SerializedName("activity_type")
    private ActivityType type;
    @SerializedName("activity_timestamp")
    private String timestamp;
    @SerializedName("activity_message")
    private String message;
    @SerializedName("route_id")
    private String routeId;
    @SerializedName("route_name")
    private String routeName;
    @SerializedName("route_destination_od")
    private String routeDestinationId;
    @SerializedName("note_id")
    private String noteId;
    @SerializedName("note_type")
    private String noteType;
    @SerializedName("note_contents")
    private String noteContents;
    @SerializedName("note_file")
    private String noteFile;
    private User member;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy