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

org.kohsuke.github.GHRepositoryTrafficTopReferralSources Maven / Gradle / Ivy

The newest version!
package org.kohsuke.github;

/**
 * Top referral source object.
 */
public class GHRepositoryTrafficTopReferralSources extends GHRepositoryTrafficReferralBase {
    private String referrer;

    /**
     * Instantiates a new Gh repository traffic top referral sources.
     */
    GHRepositoryTrafficTopReferralSources() {
    }

    /**
     * Instantiates a new Gh repository traffic top referral sources.
     *
     * @param count
     *            the count
     * @param uniques
     *            the uniques
     * @param referrer
     *            the referrer
     */
    GHRepositoryTrafficTopReferralSources(int count, int uniques, String referrer) {
        super(count, uniques);
        this.referrer = referrer;
    }

    /**
     * Gets referrer.
     *
     * @return the referrer
     */
    public String getReferrer() {
        return this.referrer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy