001/* 002 * Copyright 2010-2014 Ning, Inc. 003 * Copyright 2014-2015 The Billing Project, LLC 004 * 005 * The Billing Project licenses this file to you under the Apache License, version 2.0 006 * (the "License"); you may not use this file except in compliance with the 007 * License. You may obtain a copy of the License at: 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 013 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 014 * License for the specific language governing permissions and limitations 015 * under the License. 016 */ 017package com.ning.billing.recurly.model; 018 019import javax.xml.bind.annotation.XmlEnum; 020import javax.xml.bind.annotation.XmlEnumValue; 021 022// see AccountAcquisition docs: https://dev.recurly.com/docs/create-account-acquisition 023@XmlEnum(String.class) 024public enum AcquisitionChannel { 025 @XmlEnumValue("referral") 026 REFERAL, 027 @XmlEnumValue("social_media") 028 SOCIAL_MEDIA, 029 @XmlEnumValue("email") 030 EMAIL, 031 @XmlEnumValue("paid_search") 032 PAID_SEARCH, 033 @XmlEnumValue("organic_search") 034 ORGANIC_SEARCH, 035 @XmlEnumValue("direct_traffic") 036 DIRECT_TRAFFIC, 037 @XmlEnumValue("marketing_content") 038 MARKETING_CONTENT, 039 @XmlEnumValue("blog") 040 BLOG, 041 @XmlEnumValue("events") 042 EVENTS, 043 @XmlEnumValue("outbound_sales") 044 OUTBOUND_SALES, 045 @XmlEnumValue("advertising") 046 ADVERTISING, 047 @XmlEnumValue("public_relations") 048 PUBLIC_RELATIONS, 049 @XmlEnumValue("other") 050 OTHER; 051}