io.induct.yle.api.programs.domain.items.TvClip Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yle-api Show documentation
Show all versions of yle-api Show documentation
Uploads all artifacts belonging to configuration ':archives'
The newest version!
package io.induct.yle.api.programs.domain.items;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.induct.yle.api.YleId;
import io.induct.yle.api.programs.domain.Item;
/**
* @since 2015-05-30
*/
public class TvClip extends Item {
@JsonCreator
public TvClip(@JsonProperty("id") YleId identity) {
super(identity);
}
}