
com.iyzipay.google.cloud.vision.model.Image Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-vision Show documentation
Show all versions of google-cloud-vision Show documentation
Google Cloud Vision Java Client
package com.iyzipay.google.cloud.vision.model;
public class Image {
private String content;
private ImageSource source;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public ImageSource getSource() {
return source;
}
public void setSource(ImageSource source) {
this.source = source;
}
}