com.wix.mediaplatform.v7.service.video.ExtractPosterJobGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-platform-java-sdk Show documentation
Show all versions of media-platform-java-sdk Show documentation
The Wix Media Platform Java SDK
package com.wix.mediaplatform.v7.service.video;
public class ExtractPosterJobGroup {
private ExtractPosterJob[] jobs;
private String groupId;
public ExtractPosterJobGroup() {
}
public ExtractPosterJob[] getJobs() {
return jobs;
}
public ExtractPosterJobGroup setJobs(ExtractPosterJob[] jobs) {
this.jobs = jobs;
return this;
}
public String getGroupId() {
return groupId;
}
public ExtractPosterJobGroup setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
}