All Downloads are FREE. Search and download functionalities are using the official Maven repository.

twitter4j.models.ads.cards.LeadGenerationDailyStatMetric Maven / Gradle / Ivy

There is a newer version: 2.2
Show newest version
package twitter4j.models.ads.cards;

/**
 * @author meghanajain
 */
public enum LeadGenerationDailyStatMetric {
    BILLED_PER_CARD_RESPONSE("billed_per_card_response"),
    PROMOTION_CARD_RESPONSES("promotion_card_responses"),
    SPENT("billed_charge_local_micro");

    private final String metric;

    LeadGenerationDailyStatMetric(String metric) {
        this.metric = metric;
    }

    public String getMetric() {
        return metric;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy