Ecwid / ecwid-mailchimp

MailChimp API Wrapper for Java
Apache License 2.0
86 stars 83 forks source link

Implement the ListsMethod call. #5

Closed farmdawgnation closed 11 years ago

farmdawgnation commented 11 years ago

This implements the Mailchimp API call for /lists, as documented here: http://apidocs.mailchimp.com/api/1.3/lists.func.php

basiliscus commented 11 years ago

Thank you for the contribution. I will review and merge the changes within the next few days.

farmdawgnation commented 11 years ago

Sounds good man! I'll probably have another one coming through the pipe within the next day or so, too.

basiliscus commented 11 years ago

The changes look good. The only concern I have is that the following fields should be Date's instead of String's:

ListsMethodFilters public String created_before; public String created_after;

ListInformation public String date_created;

AccountDetails public String plan_start_date; public String first_payment; public String last_payment; public String last_login;

AccountAppliedReward public String date;

AccountModuleDetails public String added;

AccountOrderDetails public String date;

AccountRewardReferral public String signup_date;

I'd appreciate if you could change the code appropriately and resubmit the request. Thank you.

farmdawgnation commented 11 years ago

I've changed the variables for the lists feature. Hitting up the accounts next.