com.brightcove.castlabs.client.response.IngestAssetsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of castlabs-java-api Show documentation
Show all versions of castlabs-java-api Show documentation
Java client API for the Castlabs service
/**
* Copyright 2015 Brightcove Inc. All rights reserved.
*
* @author Scott Kidder
*/
package com.brightcove.castlabs.client.response;
import java.util.ArrayList;
import java.util.List;
/**
* @author Scott Kidder
*
*/
public class IngestAssetsResponse {
private List assets = new ArrayList();
public List getAssets() {
return assets;
}
public void setAssets(List assets) {
this.assets = assets;
}
@Override
public String toString() {
return "IngestAssetsResponse [assets=" + assets + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy