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

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

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


public class ArchiveInfo {
    /**
     * Archive size in bytes
     * Format: int64
     * Example: 201412
     */
    public Long size;
    /**
     * Link for archive download
     * Format: uri
     */
    public String uri;

    public ArchiveInfo size(Long size) {
        this.size = size;
        return this;
    }

    public ArchiveInfo uri(String uri) {
        this.uri = uri;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy