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

com.byteplus.model.beans.UploadCompleteInfo Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.model.beans;

import lombok.Data;

@Data
public class UploadCompleteInfo {
    String oid;
    String sessionKey;

    public UploadCompleteInfo(String oid, String sessionKey) {
        this.oid = oid;
        this.sessionKey = sessionKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy