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

com.ringcentral.definitions.MultipartResponseEntryBase Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class MultipartResponseEntryBase {
    /**
     * Internal identifier of a resource
     * Required
     * Example: 1724099032020
     */
    public String resourceId;
    /**
     * HTTP status code of an operation on given resource
     * Required
     * Format: int32
     * Example: 200
     */
    public Long status;

    public MultipartResponseEntryBase resourceId(String resourceId) {
        this.resourceId = resourceId;
        return this;
    }

    public MultipartResponseEntryBase status(Long status) {
        this.status = status;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy