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

com.mercadopago.resources.datastructures.preference.Track Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.mercadopago.resources.datastructures.preference;

public class Track {

    private String type;
    private TrackValues values;

    public String getType() {
        return type;
    }

    public Track setType(String type) {
        this.type = type;
        return this;
    }

    public TrackValues getValues() {
        return values;
    }

    public Track setValues(TrackValues values) {
        this.values = values;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy