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

com.apitable.client.api.model.CreateFieldResponse Maven / Gradle / Ivy

The newest version!
package com.apitable.client.api.model;

public class CreateFieldResponse {

    private String id;

    private String name;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return "CreateFieldResponse{" +
                "id='" + id + '\'' +
                ", name='" + name + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy