com.symphony.bdk.http.api.ApiClientBodyPart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-bdk-http-api Show documentation
Show all versions of symphony-bdk-http-api Show documentation
Symphony Java BDK Core Http API
The newest version!
package com.symphony.bdk.http.api;
import lombok.AllArgsConstructor;
import lombok.Getter;
import org.apiguardian.api.API;
import java.io.InputStream;
/**
*
*/
@Getter
@AllArgsConstructor
@API(status = API.Status.INTERNAL)
public class ApiClientBodyPart {
private final InputStream content;
private final String filename;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy