package io.delphiplatform.api.v3.bigtable.entity;

import com.sonymusic.delphi.etl.apps.proto.Youtube.YoutubeCountryStats;

import java.time.LocalDate;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class YouTubeVideoStats {

    private String rowKey;
    private LocalDate date;
    private String videoId;
    private String dsp;
    private YoutubeCountryStats streams;
    private YoutubeCountryStats demographics;
    private String isrc;
    private String productFamilyId;
    private String projectNumber;
    private String contentType;

}
