Skip to content

Commit

Permalink
Forgot the AddOn wrapper in the last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
EZWrighter committed Sep 16, 2011
1 parent 0451e18 commit 12e857b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/com/kwanzoo/recurly/AddOn.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.kwanzoo.recurly;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name="add_on")
public class AddOn{
@XmlElement(name="add_on_code")
public String addOnCode;

@XmlElement(name="unit_amount_in_cents")
public Integer unitAmountInCents;

@XmlElement(name="quantity")
public Integer quantity;
}

0 comments on commit 12e857b

Please sign in to comment.