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

com.yahoo.athenz.zts.ResourceError Maven / Gradle / Ivy

//
// This file generated by rdl 1.5.2. Do not modify!
//
package com.yahoo.athenz.zts;

public class ResourceError {

    public int code;
    public String message;

    public ResourceError code(int code) {
        this.code = code;
        return this;
    }
    public ResourceError message(String message) {
        this.message = message;
        return this;
    }

    public String toString() {
        return "{code: " + code + ", message: \"" + message + "\"}";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy