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

com.scayle.adminapi.model.Carrier Maven / Gradle / Ivy

There is a newer version: 1.24.0
Show newest version
package com.scayle.adminapi.model;

import java.util.List;
import java.util.Map;

import com.google.gson.annotations.SerializedName;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class Carrier implements ApiObjectInterface {
    /**
    * The ID of the carrier created by SCAYLE.
    */
    @SerializedName("id")
    Integer id;

    /**
    * The key of the carrier.
    */
    @SerializedName("key")
    String key;

    /**
    * Name of the carrier.
    */
    @SerializedName("name")
    String name;

    /**
    * Tracking URL of the carrier.
    */
    @SerializedName("trackingUrl")
    String trackingUrl;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy