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

com.facebook.ads.sdk.ExtendedCredit Maven / Gradle / Ivy

/**
 * Copyright (c) 2015-present, Facebook, Inc. All rights reserved.
 *
 * You are hereby granted a non-exclusive, worldwide, royalty-free license to
 * use, copy, modify, and distribute this software in source code or binary
 * form for use in connection with the web services and APIs provided by
 * Facebook.
 *
 * As with any software that integrates with the Facebook platform, your use
 * of this software is subject to the Facebook Developer Principles and
 * Policies [http://developers.facebook.com/policy/]. This copyright notice
 * shall be included in all copies or substantial portions of the software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 */

package com.facebook.ads.sdk;

import java.io.File;
import java.lang.reflect.Modifier;
import java.lang.reflect.Type;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.google.common.base.Function;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.SettableFuture;
import com.google.gson.JsonObject;
import com.google.gson.JsonArray;
import com.google.gson.annotations.SerializedName;
import com.google.gson.reflect.TypeToken;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonElement;
import com.google.gson.JsonParser;

import com.facebook.ads.sdk.APIException.MalformedResponseException;

/**
 * This class is auto-generated.
 *
 * For any issues or feature requests related to this class, please let us know
 * on github and we'll fix in our codegen framework. We'll not be able to accept
 * pull request for this class.
 *
 */
public class ExtendedCredit extends APINode {
  @SerializedName("allocated_amount")
  private CurrencyAmount mAllocatedAmount = null;
  @SerializedName("balance")
  private CurrencyAmount mBalance = null;
  @SerializedName("credit_available")
  private CurrencyAmount mCreditAvailable = null;
  @SerializedName("credit_type")
  private String mCreditType = null;
  @SerializedName("id")
  private String mId = null;
  @SerializedName("is_access_revoked")
  private Boolean mIsAccessRevoked = null;
  @SerializedName("is_automated_experience")
  private Boolean mIsAutomatedExperience = null;
  @SerializedName("last_payment_time")
  private String mLastPaymentTime = null;
  @SerializedName("legal_entity_name")
  private String mLegalEntityName = null;
  @SerializedName("liable_biz_name")
  private String mLiableBizName = null;
  @SerializedName("max_balance")
  private CurrencyAmount mMaxBalance = null;
  @SerializedName("online_max_balance")
  private CurrencyAmount mOnlineMaxBalance = null;
  @SerializedName("owner_business")
  private Business mOwnerBusiness = null;
  @SerializedName("owner_business_name")
  private String mOwnerBusinessName = null;
  @SerializedName("partition_from")
  private String mPartitionFrom = null;
  @SerializedName("receiving_credit_allocation_config")
  private ExtendedCreditAllocationConfig mReceivingCreditAllocationConfig = null;
  @SerializedName("send_bill_to_biz_name")
  private String mSendBillToBizName = null;
  protected static Gson gson = null;

  ExtendedCredit() {
  }

  public ExtendedCredit(Long id, APIContext context) {
    this(id.toString(), context);
  }

  public ExtendedCredit(String id, APIContext context) {
    this.mId = id;

    this.context = context;
  }

  public ExtendedCredit fetch() throws APIException{
    ExtendedCredit newInstance = fetchById(this.getPrefixedId().toString(), this.context);
    this.copyFrom(newInstance);
    return this;
  }

  public static ExtendedCredit fetchById(Long id, APIContext context) throws APIException {
    return fetchById(id.toString(), context);
  }

  public static ListenableFuture fetchByIdAsync(Long id, APIContext context) throws APIException {
    return fetchByIdAsync(id.toString(), context);
  }

  public static ExtendedCredit fetchById(String id, APIContext context) throws APIException {
    return
      new APIRequestGet(id, context)
      .requestAllFields()
      .execute();
  }

  public static ListenableFuture fetchByIdAsync(String id, APIContext context) throws APIException {
    return
      new APIRequestGet(id, context)
      .requestAllFields()
      .executeAsync();
  }

  public static APINodeList fetchByIds(List ids, List fields, APIContext context) throws APIException {
    return (APINodeList)(
      new APIRequest(context, "", "/", "GET", ExtendedCredit.getParser())
        .setParam("ids", APIRequest.joinStringList(ids))
        .requestFields(fields)
        .execute()
    );
  }

  public static ListenableFuture> fetchByIdsAsync(List ids, List fields, APIContext context) throws APIException {
    return
      new APIRequest(context, "", "/", "GET", ExtendedCredit.getParser())
        .setParam("ids", APIRequest.joinStringList(ids))
        .requestFields(fields)
        .executeAsyncBase();
  }

  private String getPrefixedId() {
    return getId();
  }

  public String getId() {
    return getFieldId().toString();
  }
  public static ExtendedCredit loadJSON(String json, APIContext context, String header) {
    ExtendedCredit extendedCredit = getGson().fromJson(json, ExtendedCredit.class);
    if (context.isDebug()) {
      JsonParser parser = new JsonParser();
      JsonElement o1 = parser.parse(json);
      JsonElement o2 = parser.parse(extendedCredit.toString());
      if (o1.getAsJsonObject().get("__fb_trace_id__") != null) {
        o2.getAsJsonObject().add("__fb_trace_id__", o1.getAsJsonObject().get("__fb_trace_id__"));
      }
      if (!o1.equals(o2)) {
        context.log("[Warning] When parsing response, object is not consistent with JSON:");
        context.log("[JSON]" + o1);
        context.log("[Object]" + o2);
      };
    }
    extendedCredit.context = context;
    extendedCredit.rawValue = json;
    extendedCredit.header = header;
    return extendedCredit;
  }

  public static APINodeList parseResponse(String json, APIContext context, APIRequest request, String header) throws MalformedResponseException {
    APINodeList extendedCredits = new APINodeList(request, json, header);
    JsonArray arr;
    JsonObject obj;
    JsonParser parser = new JsonParser();
    Exception exception = null;
    try{
      JsonElement result = parser.parse(json);
      if (result.isJsonArray()) {
        // First, check if it's a pure JSON Array
        arr = result.getAsJsonArray();
        for (int i = 0; i < arr.size(); i++) {
          extendedCredits.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context, header));
        };
        return extendedCredits;
      } else if (result.isJsonObject()) {
        obj = result.getAsJsonObject();
        if (obj.has("data")) {
          if (obj.has("paging")) {
            JsonObject paging = obj.get("paging").getAsJsonObject();
            if (paging.has("cursors")) {
                JsonObject cursors = paging.get("cursors").getAsJsonObject();
                String before = cursors.has("before") ? cursors.get("before").getAsString() : null;
                String after = cursors.has("after") ? cursors.get("after").getAsString() : null;
                extendedCredits.setCursors(before, after);
            }
            String previous = paging.has("previous") ? paging.get("previous").getAsString() : null;
            String next = paging.has("next") ? paging.get("next").getAsString() : null;
            extendedCredits.setPaging(previous, next);
            if (context.hasAppSecret()) {
              extendedCredits.setAppSecret(context.getAppSecretProof());
            }
          }
          if (obj.get("data").isJsonArray()) {
            // Second, check if it's a JSON array with "data"
            arr = obj.get("data").getAsJsonArray();
            for (int i = 0; i < arr.size(); i++) {
              extendedCredits.add(loadJSON(arr.get(i).getAsJsonObject().toString(), context, header));
            };
          } else if (obj.get("data").isJsonObject()) {
            // Third, check if it's a JSON object with "data"
            obj = obj.get("data").getAsJsonObject();
            boolean isRedownload = false;
            for (String s : new String[]{"campaigns", "adsets", "ads"}) {
              if (obj.has(s)) {
                isRedownload = true;
                obj = obj.getAsJsonObject(s);
                for (Map.Entry entry : obj.entrySet()) {
                  extendedCredits.add(loadJSON(entry.getValue().toString(), context, header));
                }
                break;
              }
            }
            if (!isRedownload) {
              extendedCredits.add(loadJSON(obj.toString(), context, header));
            }
          }
          return extendedCredits;
        } else if (obj.has("images")) {
          // Fourth, check if it's a map of image objects
          obj = obj.get("images").getAsJsonObject();
          for (Map.Entry entry : obj.entrySet()) {
              extendedCredits.add(loadJSON(entry.getValue().toString(), context, header));
          }
          return extendedCredits;
        } else {
          // Fifth, check if it's an array of objects indexed by id
          boolean isIdIndexedArray = true;
          for (Map.Entry entry : obj.entrySet()) {
            String key = (String) entry.getKey();
            if (key.equals("__fb_trace_id__")) {
              continue;
            }
            JsonElement value = (JsonElement) entry.getValue();
            if (
              value != null &&
              value.isJsonObject() &&
              value.getAsJsonObject().has("id") &&
              value.getAsJsonObject().get("id") != null &&
              value.getAsJsonObject().get("id").getAsString().equals(key)
            ) {
              extendedCredits.add(loadJSON(value.toString(), context, header));
            } else {
              isIdIndexedArray = false;
              break;
            }
          }
          if (isIdIndexedArray) {
            return extendedCredits;
          }

          // Sixth, check if it's pure JsonObject
          extendedCredits.clear();
          extendedCredits.add(loadJSON(json, context, header));
          return extendedCredits;
        }
      }
    } catch (Exception e) {
      exception = e;
    }
    throw new MalformedResponseException(
      "Invalid response string: " + json,
      exception
    );
  }

  @Override
  public APIContext getContext() {
    return context;
  }

  @Override
  public void setContext(APIContext context) {
    this.context = context;
  }

  @Override
  public String toString() {
    return getGson().toJson(this);
  }

  public APIRequestGetExtendedCreditEmails getExtendedCreditEmails() {
    return new APIRequestGetExtendedCreditEmails(this.getPrefixedId().toString(), context);
  }

  public APIRequestGetExtendedCreditInvoiceGroups getExtendedCreditInvoiceGroups() {
    return new APIRequestGetExtendedCreditInvoiceGroups(this.getPrefixedId().toString(), context);
  }

  public APIRequestCreateExtendedCreditInvoiceGroup createExtendedCreditInvoiceGroup() {
    return new APIRequestCreateExtendedCreditInvoiceGroup(this.getPrefixedId().toString(), context);
  }

  public APIRequestGetOwningCreditAllocationConfigs getOwningCreditAllocationConfigs() {
    return new APIRequestGetOwningCreditAllocationConfigs(this.getPrefixedId().toString(), context);
  }

  public APIRequestCreateOwningCreditAllocationConfig createOwningCreditAllocationConfig() {
    return new APIRequestCreateOwningCreditAllocationConfig(this.getPrefixedId().toString(), context);
  }

  public APIRequestGet get() {
    return new APIRequestGet(this.getPrefixedId().toString(), context);
  }


  public CurrencyAmount getFieldAllocatedAmount() {
    return mAllocatedAmount;
  }

  public CurrencyAmount getFieldBalance() {
    return mBalance;
  }

  public CurrencyAmount getFieldCreditAvailable() {
    return mCreditAvailable;
  }

  public String getFieldCreditType() {
    return mCreditType;
  }

  public String getFieldId() {
    return mId;
  }

  public Boolean getFieldIsAccessRevoked() {
    return mIsAccessRevoked;
  }

  public Boolean getFieldIsAutomatedExperience() {
    return mIsAutomatedExperience;
  }

  public String getFieldLastPaymentTime() {
    return mLastPaymentTime;
  }

  public String getFieldLegalEntityName() {
    return mLegalEntityName;
  }

  public String getFieldLiableBizName() {
    return mLiableBizName;
  }

  public CurrencyAmount getFieldMaxBalance() {
    return mMaxBalance;
  }

  public CurrencyAmount getFieldOnlineMaxBalance() {
    return mOnlineMaxBalance;
  }

  public Business getFieldOwnerBusiness() {
    if (mOwnerBusiness != null) {
      mOwnerBusiness.context = getContext();
    }
    return mOwnerBusiness;
  }

  public String getFieldOwnerBusinessName() {
    return mOwnerBusinessName;
  }

  public String getFieldPartitionFrom() {
    return mPartitionFrom;
  }

  public ExtendedCreditAllocationConfig getFieldReceivingCreditAllocationConfig() {
    if (mReceivingCreditAllocationConfig != null) {
      mReceivingCreditAllocationConfig.context = getContext();
    }
    return mReceivingCreditAllocationConfig;
  }

  public String getFieldSendBillToBizName() {
    return mSendBillToBizName;
  }



  public static class APIRequestGetExtendedCreditEmails extends APIRequest {

    APINodeList lastResponse = null;
    @Override
    public APINodeList getLastResponse() {
      return lastResponse;
    }
    public static final String[] PARAMS = {
    };

    public static final String[] FIELDS = {
    };

    @Override
    public APINodeList parseResponse(String response, String header) throws APIException {
      return APINode.parseResponse(response, getContext(), this, header);
    }

    @Override
    public APINodeList execute() throws APIException {
      return execute(new HashMap());
    }

    @Override
    public APINodeList execute(Map extraParams) throws APIException {
      ResponseWrapper rw = executeInternal(extraParams);
      lastResponse = parseResponse(rw.getBody(),rw.getHeader());
      return lastResponse;
    }

    public ListenableFuture> executeAsync() throws APIException {
      return executeAsync(new HashMap());
    };

    public ListenableFuture> executeAsync(Map extraParams) throws APIException {
      return Futures.transform(
        executeAsyncInternal(extraParams),
        new Function>() {
           public APINodeList apply(ResponseWrapper result) {
             try {
               return APIRequestGetExtendedCreditEmails.this.parseResponse(result.getBody(), result.getHeader());
             } catch (Exception e) {
               throw new RuntimeException(e);
             }
           }
         }
      );
    };

    public APIRequestGetExtendedCreditEmails(String nodeId, APIContext context) {
      super(context, nodeId, "/extended_credit_emails", "GET", Arrays.asList(PARAMS));
    }

    @Override
    public APIRequestGetExtendedCreditEmails setParam(String param, Object value) {
      setParamInternal(param, value);
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditEmails setParams(Map params) {
      setParamsInternal(params);
      return this;
    }


    public APIRequestGetExtendedCreditEmails requestAllFields () {
      return this.requestAllFields(true);
    }

    public APIRequestGetExtendedCreditEmails requestAllFields (boolean value) {
      for (String field : FIELDS) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditEmails requestFields (List fields) {
      return this.requestFields(fields, true);
    }

    @Override
    public APIRequestGetExtendedCreditEmails requestFields (List fields, boolean value) {
      for (String field : fields) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditEmails requestField (String field) {
      this.requestField(field, true);
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditEmails requestField (String field, boolean value) {
      this.requestFieldInternal(field, value);
      return this;
    }

  }

  public static class APIRequestGetExtendedCreditInvoiceGroups extends APIRequest {

    APINodeList lastResponse = null;
    @Override
    public APINodeList getLastResponse() {
      return lastResponse;
    }
    public static final String[] PARAMS = {
    };

    public static final String[] FIELDS = {
      "auto_enroll",
      "customer_po_number",
      "email",
      "emails",
      "id",
      "name",
    };

    @Override
    public APINodeList parseResponse(String response, String header) throws APIException {
      return ExtendedCreditInvoiceGroup.parseResponse(response, getContext(), this, header);
    }

    @Override
    public APINodeList execute() throws APIException {
      return execute(new HashMap());
    }

    @Override
    public APINodeList execute(Map extraParams) throws APIException {
      ResponseWrapper rw = executeInternal(extraParams);
      lastResponse = parseResponse(rw.getBody(),rw.getHeader());
      return lastResponse;
    }

    public ListenableFuture> executeAsync() throws APIException {
      return executeAsync(new HashMap());
    };

    public ListenableFuture> executeAsync(Map extraParams) throws APIException {
      return Futures.transform(
        executeAsyncInternal(extraParams),
        new Function>() {
           public APINodeList apply(ResponseWrapper result) {
             try {
               return APIRequestGetExtendedCreditInvoiceGroups.this.parseResponse(result.getBody(), result.getHeader());
             } catch (Exception e) {
               throw new RuntimeException(e);
             }
           }
         }
      );
    };

    public APIRequestGetExtendedCreditInvoiceGroups(String nodeId, APIContext context) {
      super(context, nodeId, "/extended_credit_invoice_groups", "GET", Arrays.asList(PARAMS));
    }

    @Override
    public APIRequestGetExtendedCreditInvoiceGroups setParam(String param, Object value) {
      setParamInternal(param, value);
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditInvoiceGroups setParams(Map params) {
      setParamsInternal(params);
      return this;
    }


    public APIRequestGetExtendedCreditInvoiceGroups requestAllFields () {
      return this.requestAllFields(true);
    }

    public APIRequestGetExtendedCreditInvoiceGroups requestAllFields (boolean value) {
      for (String field : FIELDS) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditInvoiceGroups requestFields (List fields) {
      return this.requestFields(fields, true);
    }

    @Override
    public APIRequestGetExtendedCreditInvoiceGroups requestFields (List fields, boolean value) {
      for (String field : fields) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditInvoiceGroups requestField (String field) {
      this.requestField(field, true);
      return this;
    }

    @Override
    public APIRequestGetExtendedCreditInvoiceGroups requestField (String field, boolean value) {
      this.requestFieldInternal(field, value);
      return this;
    }

    public APIRequestGetExtendedCreditInvoiceGroups requestAutoEnrollField () {
      return this.requestAutoEnrollField(true);
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestAutoEnrollField (boolean value) {
      this.requestField("auto_enroll", value);
      return this;
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestCustomerPoNumberField () {
      return this.requestCustomerPoNumberField(true);
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestCustomerPoNumberField (boolean value) {
      this.requestField("customer_po_number", value);
      return this;
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestEmailField () {
      return this.requestEmailField(true);
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestEmailField (boolean value) {
      this.requestField("email", value);
      return this;
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestEmailsField () {
      return this.requestEmailsField(true);
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestEmailsField (boolean value) {
      this.requestField("emails", value);
      return this;
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestIdField () {
      return this.requestIdField(true);
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestIdField (boolean value) {
      this.requestField("id", value);
      return this;
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestNameField () {
      return this.requestNameField(true);
    }
    public APIRequestGetExtendedCreditInvoiceGroups requestNameField (boolean value) {
      this.requestField("name", value);
      return this;
    }
  }

  public static class APIRequestCreateExtendedCreditInvoiceGroup extends APIRequest {

    ExtendedCreditInvoiceGroup lastResponse = null;
    @Override
    public ExtendedCreditInvoiceGroup getLastResponse() {
      return lastResponse;
    }
    public static final String[] PARAMS = {
      "name",
      "emails",
    };

    public static final String[] FIELDS = {
    };

    @Override
    public ExtendedCreditInvoiceGroup parseResponse(String response, String header) throws APIException {
      return ExtendedCreditInvoiceGroup.parseResponse(response, getContext(), this, header).head();
    }

    @Override
    public ExtendedCreditInvoiceGroup execute() throws APIException {
      return execute(new HashMap());
    }

    @Override
    public ExtendedCreditInvoiceGroup execute(Map extraParams) throws APIException {
      ResponseWrapper rw = executeInternal(extraParams);
      lastResponse = parseResponse(rw.getBody(), rw.getHeader());
      return lastResponse;
    }

    public ListenableFuture executeAsync() throws APIException {
      return executeAsync(new HashMap());
    };

    public ListenableFuture executeAsync(Map extraParams) throws APIException {
      return Futures.transform(
        executeAsyncInternal(extraParams),
        new Function() {
           public ExtendedCreditInvoiceGroup apply(ResponseWrapper result) {
             try {
               return APIRequestCreateExtendedCreditInvoiceGroup.this.parseResponse(result.getBody(), result.getHeader());
             } catch (Exception e) {
               throw new RuntimeException(e);
             }
           }
         }
      );
    };

    public APIRequestCreateExtendedCreditInvoiceGroup(String nodeId, APIContext context) {
      super(context, nodeId, "/extended_credit_invoice_groups", "POST", Arrays.asList(PARAMS));
    }

    @Override
    public APIRequestCreateExtendedCreditInvoiceGroup setParam(String param, Object value) {
      setParamInternal(param, value);
      return this;
    }

    @Override
    public APIRequestCreateExtendedCreditInvoiceGroup setParams(Map params) {
      setParamsInternal(params);
      return this;
    }


    public APIRequestCreateExtendedCreditInvoiceGroup setName (String name) {
      this.setParam("name", name);
      return this;
    }

    public APIRequestCreateExtendedCreditInvoiceGroup setEmails (List emails) {
      this.setParam("emails", emails);
      return this;
    }
    public APIRequestCreateExtendedCreditInvoiceGroup setEmails (String emails) {
      this.setParam("emails", emails);
      return this;
    }

    public APIRequestCreateExtendedCreditInvoiceGroup requestAllFields () {
      return this.requestAllFields(true);
    }

    public APIRequestCreateExtendedCreditInvoiceGroup requestAllFields (boolean value) {
      for (String field : FIELDS) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestCreateExtendedCreditInvoiceGroup requestFields (List fields) {
      return this.requestFields(fields, true);
    }

    @Override
    public APIRequestCreateExtendedCreditInvoiceGroup requestFields (List fields, boolean value) {
      for (String field : fields) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestCreateExtendedCreditInvoiceGroup requestField (String field) {
      this.requestField(field, true);
      return this;
    }

    @Override
    public APIRequestCreateExtendedCreditInvoiceGroup requestField (String field, boolean value) {
      this.requestFieldInternal(field, value);
      return this;
    }

  }

  public static class APIRequestGetOwningCreditAllocationConfigs extends APIRequest {

    APINodeList lastResponse = null;
    @Override
    public APINodeList getLastResponse() {
      return lastResponse;
    }
    public static final String[] PARAMS = {
      "receiving_business_id",
    };

    public static final String[] FIELDS = {
      "currency_amount",
      "id",
      "liability_type",
      "owning_business",
      "owning_credential",
      "partition_type",
      "receiving_business",
      "receiving_credential",
      "request_status",
      "send_bill_to",
    };

    @Override
    public APINodeList parseResponse(String response, String header) throws APIException {
      return ExtendedCreditAllocationConfig.parseResponse(response, getContext(), this, header);
    }

    @Override
    public APINodeList execute() throws APIException {
      return execute(new HashMap());
    }

    @Override
    public APINodeList execute(Map extraParams) throws APIException {
      ResponseWrapper rw = executeInternal(extraParams);
      lastResponse = parseResponse(rw.getBody(),rw.getHeader());
      return lastResponse;
    }

    public ListenableFuture> executeAsync() throws APIException {
      return executeAsync(new HashMap());
    };

    public ListenableFuture> executeAsync(Map extraParams) throws APIException {
      return Futures.transform(
        executeAsyncInternal(extraParams),
        new Function>() {
           public APINodeList apply(ResponseWrapper result) {
             try {
               return APIRequestGetOwningCreditAllocationConfigs.this.parseResponse(result.getBody(), result.getHeader());
             } catch (Exception e) {
               throw new RuntimeException(e);
             }
           }
         }
      );
    };

    public APIRequestGetOwningCreditAllocationConfigs(String nodeId, APIContext context) {
      super(context, nodeId, "/owning_credit_allocation_configs", "GET", Arrays.asList(PARAMS));
    }

    @Override
    public APIRequestGetOwningCreditAllocationConfigs setParam(String param, Object value) {
      setParamInternal(param, value);
      return this;
    }

    @Override
    public APIRequestGetOwningCreditAllocationConfigs setParams(Map params) {
      setParamsInternal(params);
      return this;
    }


    public APIRequestGetOwningCreditAllocationConfigs setReceivingBusinessId (String receivingBusinessId) {
      this.setParam("receiving_business_id", receivingBusinessId);
      return this;
    }

    public APIRequestGetOwningCreditAllocationConfigs requestAllFields () {
      return this.requestAllFields(true);
    }

    public APIRequestGetOwningCreditAllocationConfigs requestAllFields (boolean value) {
      for (String field : FIELDS) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGetOwningCreditAllocationConfigs requestFields (List fields) {
      return this.requestFields(fields, true);
    }

    @Override
    public APIRequestGetOwningCreditAllocationConfigs requestFields (List fields, boolean value) {
      for (String field : fields) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGetOwningCreditAllocationConfigs requestField (String field) {
      this.requestField(field, true);
      return this;
    }

    @Override
    public APIRequestGetOwningCreditAllocationConfigs requestField (String field, boolean value) {
      this.requestFieldInternal(field, value);
      return this;
    }

    public APIRequestGetOwningCreditAllocationConfigs requestCurrencyAmountField () {
      return this.requestCurrencyAmountField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestCurrencyAmountField (boolean value) {
      this.requestField("currency_amount", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestIdField () {
      return this.requestIdField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestIdField (boolean value) {
      this.requestField("id", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestLiabilityTypeField () {
      return this.requestLiabilityTypeField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestLiabilityTypeField (boolean value) {
      this.requestField("liability_type", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestOwningBusinessField () {
      return this.requestOwningBusinessField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestOwningBusinessField (boolean value) {
      this.requestField("owning_business", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestOwningCredentialField () {
      return this.requestOwningCredentialField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestOwningCredentialField (boolean value) {
      this.requestField("owning_credential", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestPartitionTypeField () {
      return this.requestPartitionTypeField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestPartitionTypeField (boolean value) {
      this.requestField("partition_type", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestReceivingBusinessField () {
      return this.requestReceivingBusinessField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestReceivingBusinessField (boolean value) {
      this.requestField("receiving_business", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestReceivingCredentialField () {
      return this.requestReceivingCredentialField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestReceivingCredentialField (boolean value) {
      this.requestField("receiving_credential", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestRequestStatusField () {
      return this.requestRequestStatusField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestRequestStatusField (boolean value) {
      this.requestField("request_status", value);
      return this;
    }
    public APIRequestGetOwningCreditAllocationConfigs requestSendBillToField () {
      return this.requestSendBillToField(true);
    }
    public APIRequestGetOwningCreditAllocationConfigs requestSendBillToField (boolean value) {
      this.requestField("send_bill_to", value);
      return this;
    }
  }

  public static class APIRequestCreateOwningCreditAllocationConfig extends APIRequest {

    ExtendedCreditAllocationConfig lastResponse = null;
    @Override
    public ExtendedCreditAllocationConfig getLastResponse() {
      return lastResponse;
    }
    public static final String[] PARAMS = {
      "receiving_business_id",
      "amount",
      "liability_type",
      "send_bill_to",
      "partition_type",
    };

    public static final String[] FIELDS = {
    };

    @Override
    public ExtendedCreditAllocationConfig parseResponse(String response, String header) throws APIException {
      return ExtendedCreditAllocationConfig.parseResponse(response, getContext(), this, header).head();
    }

    @Override
    public ExtendedCreditAllocationConfig execute() throws APIException {
      return execute(new HashMap());
    }

    @Override
    public ExtendedCreditAllocationConfig execute(Map extraParams) throws APIException {
      ResponseWrapper rw = executeInternal(extraParams);
      lastResponse = parseResponse(rw.getBody(), rw.getHeader());
      return lastResponse;
    }

    public ListenableFuture executeAsync() throws APIException {
      return executeAsync(new HashMap());
    };

    public ListenableFuture executeAsync(Map extraParams) throws APIException {
      return Futures.transform(
        executeAsyncInternal(extraParams),
        new Function() {
           public ExtendedCreditAllocationConfig apply(ResponseWrapper result) {
             try {
               return APIRequestCreateOwningCreditAllocationConfig.this.parseResponse(result.getBody(), result.getHeader());
             } catch (Exception e) {
               throw new RuntimeException(e);
             }
           }
         }
      );
    };

    public APIRequestCreateOwningCreditAllocationConfig(String nodeId, APIContext context) {
      super(context, nodeId, "/owning_credit_allocation_configs", "POST", Arrays.asList(PARAMS));
    }

    @Override
    public APIRequestCreateOwningCreditAllocationConfig setParam(String param, Object value) {
      setParamInternal(param, value);
      return this;
    }

    @Override
    public APIRequestCreateOwningCreditAllocationConfig setParams(Map params) {
      setParamsInternal(params);
      return this;
    }


    public APIRequestCreateOwningCreditAllocationConfig setReceivingBusinessId (String receivingBusinessId) {
      this.setParam("receiving_business_id", receivingBusinessId);
      return this;
    }

    public APIRequestCreateOwningCreditAllocationConfig setAmount (Object amount) {
      this.setParam("amount", amount);
      return this;
    }
    public APIRequestCreateOwningCreditAllocationConfig setAmount (String amount) {
      this.setParam("amount", amount);
      return this;
    }

    public APIRequestCreateOwningCreditAllocationConfig setLiabilityType (ExtendedCreditAllocationConfig.EnumLiabilityType liabilityType) {
      this.setParam("liability_type", liabilityType);
      return this;
    }
    public APIRequestCreateOwningCreditAllocationConfig setLiabilityType (String liabilityType) {
      this.setParam("liability_type", liabilityType);
      return this;
    }

    public APIRequestCreateOwningCreditAllocationConfig setSendBillTo (ExtendedCreditAllocationConfig.EnumSendBillTo sendBillTo) {
      this.setParam("send_bill_to", sendBillTo);
      return this;
    }
    public APIRequestCreateOwningCreditAllocationConfig setSendBillTo (String sendBillTo) {
      this.setParam("send_bill_to", sendBillTo);
      return this;
    }

    public APIRequestCreateOwningCreditAllocationConfig setPartitionType (ExtendedCreditAllocationConfig.EnumPartitionType partitionType) {
      this.setParam("partition_type", partitionType);
      return this;
    }
    public APIRequestCreateOwningCreditAllocationConfig setPartitionType (String partitionType) {
      this.setParam("partition_type", partitionType);
      return this;
    }

    public APIRequestCreateOwningCreditAllocationConfig requestAllFields () {
      return this.requestAllFields(true);
    }

    public APIRequestCreateOwningCreditAllocationConfig requestAllFields (boolean value) {
      for (String field : FIELDS) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestCreateOwningCreditAllocationConfig requestFields (List fields) {
      return this.requestFields(fields, true);
    }

    @Override
    public APIRequestCreateOwningCreditAllocationConfig requestFields (List fields, boolean value) {
      for (String field : fields) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestCreateOwningCreditAllocationConfig requestField (String field) {
      this.requestField(field, true);
      return this;
    }

    @Override
    public APIRequestCreateOwningCreditAllocationConfig requestField (String field, boolean value) {
      this.requestFieldInternal(field, value);
      return this;
    }

  }

  public static class APIRequestGet extends APIRequest {

    ExtendedCredit lastResponse = null;
    @Override
    public ExtendedCredit getLastResponse() {
      return lastResponse;
    }
    public static final String[] PARAMS = {
    };

    public static final String[] FIELDS = {
      "allocated_amount",
      "balance",
      "credit_available",
      "credit_type",
      "id",
      "is_access_revoked",
      "is_automated_experience",
      "last_payment_time",
      "legal_entity_name",
      "liable_biz_name",
      "max_balance",
      "online_max_balance",
      "owner_business",
      "owner_business_name",
      "partition_from",
      "receiving_credit_allocation_config",
      "send_bill_to_biz_name",
    };

    @Override
    public ExtendedCredit parseResponse(String response, String header) throws APIException {
      return ExtendedCredit.parseResponse(response, getContext(), this, header).head();
    }

    @Override
    public ExtendedCredit execute() throws APIException {
      return execute(new HashMap());
    }

    @Override
    public ExtendedCredit execute(Map extraParams) throws APIException {
      ResponseWrapper rw = executeInternal(extraParams);
      lastResponse = parseResponse(rw.getBody(), rw.getHeader());
      return lastResponse;
    }

    public ListenableFuture executeAsync() throws APIException {
      return executeAsync(new HashMap());
    };

    public ListenableFuture executeAsync(Map extraParams) throws APIException {
      return Futures.transform(
        executeAsyncInternal(extraParams),
        new Function() {
           public ExtendedCredit apply(ResponseWrapper result) {
             try {
               return APIRequestGet.this.parseResponse(result.getBody(), result.getHeader());
             } catch (Exception e) {
               throw new RuntimeException(e);
             }
           }
         }
      );
    };

    public APIRequestGet(String nodeId, APIContext context) {
      super(context, nodeId, "/", "GET", Arrays.asList(PARAMS));
    }

    @Override
    public APIRequestGet setParam(String param, Object value) {
      setParamInternal(param, value);
      return this;
    }

    @Override
    public APIRequestGet setParams(Map params) {
      setParamsInternal(params);
      return this;
    }


    public APIRequestGet requestAllFields () {
      return this.requestAllFields(true);
    }

    public APIRequestGet requestAllFields (boolean value) {
      for (String field : FIELDS) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGet requestFields (List fields) {
      return this.requestFields(fields, true);
    }

    @Override
    public APIRequestGet requestFields (List fields, boolean value) {
      for (String field : fields) {
        this.requestField(field, value);
      }
      return this;
    }

    @Override
    public APIRequestGet requestField (String field) {
      this.requestField(field, true);
      return this;
    }

    @Override
    public APIRequestGet requestField (String field, boolean value) {
      this.requestFieldInternal(field, value);
      return this;
    }

    public APIRequestGet requestAllocatedAmountField () {
      return this.requestAllocatedAmountField(true);
    }
    public APIRequestGet requestAllocatedAmountField (boolean value) {
      this.requestField("allocated_amount", value);
      return this;
    }
    public APIRequestGet requestBalanceField () {
      return this.requestBalanceField(true);
    }
    public APIRequestGet requestBalanceField (boolean value) {
      this.requestField("balance", value);
      return this;
    }
    public APIRequestGet requestCreditAvailableField () {
      return this.requestCreditAvailableField(true);
    }
    public APIRequestGet requestCreditAvailableField (boolean value) {
      this.requestField("credit_available", value);
      return this;
    }
    public APIRequestGet requestCreditTypeField () {
      return this.requestCreditTypeField(true);
    }
    public APIRequestGet requestCreditTypeField (boolean value) {
      this.requestField("credit_type", value);
      return this;
    }
    public APIRequestGet requestIdField () {
      return this.requestIdField(true);
    }
    public APIRequestGet requestIdField (boolean value) {
      this.requestField("id", value);
      return this;
    }
    public APIRequestGet requestIsAccessRevokedField () {
      return this.requestIsAccessRevokedField(true);
    }
    public APIRequestGet requestIsAccessRevokedField (boolean value) {
      this.requestField("is_access_revoked", value);
      return this;
    }
    public APIRequestGet requestIsAutomatedExperienceField () {
      return this.requestIsAutomatedExperienceField(true);
    }
    public APIRequestGet requestIsAutomatedExperienceField (boolean value) {
      this.requestField("is_automated_experience", value);
      return this;
    }
    public APIRequestGet requestLastPaymentTimeField () {
      return this.requestLastPaymentTimeField(true);
    }
    public APIRequestGet requestLastPaymentTimeField (boolean value) {
      this.requestField("last_payment_time", value);
      return this;
    }
    public APIRequestGet requestLegalEntityNameField () {
      return this.requestLegalEntityNameField(true);
    }
    public APIRequestGet requestLegalEntityNameField (boolean value) {
      this.requestField("legal_entity_name", value);
      return this;
    }
    public APIRequestGet requestLiableBizNameField () {
      return this.requestLiableBizNameField(true);
    }
    public APIRequestGet requestLiableBizNameField (boolean value) {
      this.requestField("liable_biz_name", value);
      return this;
    }
    public APIRequestGet requestMaxBalanceField () {
      return this.requestMaxBalanceField(true);
    }
    public APIRequestGet requestMaxBalanceField (boolean value) {
      this.requestField("max_balance", value);
      return this;
    }
    public APIRequestGet requestOnlineMaxBalanceField () {
      return this.requestOnlineMaxBalanceField(true);
    }
    public APIRequestGet requestOnlineMaxBalanceField (boolean value) {
      this.requestField("online_max_balance", value);
      return this;
    }
    public APIRequestGet requestOwnerBusinessField () {
      return this.requestOwnerBusinessField(true);
    }
    public APIRequestGet requestOwnerBusinessField (boolean value) {
      this.requestField("owner_business", value);
      return this;
    }
    public APIRequestGet requestOwnerBusinessNameField () {
      return this.requestOwnerBusinessNameField(true);
    }
    public APIRequestGet requestOwnerBusinessNameField (boolean value) {
      this.requestField("owner_business_name", value);
      return this;
    }
    public APIRequestGet requestPartitionFromField () {
      return this.requestPartitionFromField(true);
    }
    public APIRequestGet requestPartitionFromField (boolean value) {
      this.requestField("partition_from", value);
      return this;
    }
    public APIRequestGet requestReceivingCreditAllocationConfigField () {
      return this.requestReceivingCreditAllocationConfigField(true);
    }
    public APIRequestGet requestReceivingCreditAllocationConfigField (boolean value) {
      this.requestField("receiving_credit_allocation_config", value);
      return this;
    }
    public APIRequestGet requestSendBillToBizNameField () {
      return this.requestSendBillToBizNameField(true);
    }
    public APIRequestGet requestSendBillToBizNameField (boolean value) {
      this.requestField("send_bill_to_biz_name", value);
      return this;
    }
  }


  synchronized /*package*/ static Gson getGson() {
    if (gson != null) {
      return gson;
    } else {
      gson = new GsonBuilder()
        .excludeFieldsWithModifiers(Modifier.STATIC)
        .excludeFieldsWithModifiers(Modifier.PROTECTED)
        .disableHtmlEscaping()
        .create();
    }
    return gson;
  }

  public ExtendedCredit copyFrom(ExtendedCredit instance) {
    this.mAllocatedAmount = instance.mAllocatedAmount;
    this.mBalance = instance.mBalance;
    this.mCreditAvailable = instance.mCreditAvailable;
    this.mCreditType = instance.mCreditType;
    this.mId = instance.mId;
    this.mIsAccessRevoked = instance.mIsAccessRevoked;
    this.mIsAutomatedExperience = instance.mIsAutomatedExperience;
    this.mLastPaymentTime = instance.mLastPaymentTime;
    this.mLegalEntityName = instance.mLegalEntityName;
    this.mLiableBizName = instance.mLiableBizName;
    this.mMaxBalance = instance.mMaxBalance;
    this.mOnlineMaxBalance = instance.mOnlineMaxBalance;
    this.mOwnerBusiness = instance.mOwnerBusiness;
    this.mOwnerBusinessName = instance.mOwnerBusinessName;
    this.mPartitionFrom = instance.mPartitionFrom;
    this.mReceivingCreditAllocationConfig = instance.mReceivingCreditAllocationConfig;
    this.mSendBillToBizName = instance.mSendBillToBizName;
    this.context = instance.context;
    this.rawValue = instance.rawValue;
    return this;
  }

  public static APIRequest.ResponseParser getParser() {
    return new APIRequest.ResponseParser() {
      public APINodeList parseResponse(String response, APIContext context, APIRequest request, String header) throws MalformedResponseException {
        return ExtendedCredit.parseResponse(response, context, request, header);
      }
    };
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy