package io.delphi.qa.auto.awsmfrw.models;

public enum EnDelphiDspItems {
  APPLE("apple"),
  SPOTIFY("spotify"),
  YOUTUBEMUSIC("youtubemusic"),
  AMAZONPRIME("amazonprime"),
  AMAZONMUSICUNLIMITED("amazonmusicunlimited"),
  AMAZONADSUPPORTED("amazonadsupported"),
  YOUTUBEREPORTING("youtubereporting"),
  SMEMAX("sme_max"),
  GRAS("gras"),
  VEVO("vevo"),
  APOLLO("apollo"),
  TIKTOKREPORTING("tiktokreporting"),
  LINKFIRE("linkfire"),
  APPRECIATIONENGINE("appreciationengine");

  private final String delphiDspName;

  EnDelphiDspItems(String xDelphiDspName) {
    this.delphiDspName = xDelphiDspName;
  }

  public String get() {
    return delphiDspName;
  }
}
