Skip to content

Commit

Permalink
Merge pull request #4 from IVIyg0t/master
Browse files Browse the repository at this point in the history
Changed open_rate from Int to Double
  • Loading branch information
Vasily Karyaev authored Sep 20, 2016
2 parents fe58f22 + ab50bf2 commit c3e9e2b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/com/ecwid/maleorang/method/v3_0/lists/StatsInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,23 @@ class StatsInfo : MailchimpObject() {

@JvmField
@Field
var avg_sub_rate: Int? = null
var avg_sub_rate: Double? = null

@JvmField
@Field
var avg_unsub_rate: Int? = null
var avg_unsub_rate: Double? = null

@JvmField
@Field
var target_sub_rate: Int? = null
var target_sub_rate: Double? = null

@JvmField
@Field
var open_rate: Int? = null
var open_rate: Double? = null

@JvmField
@Field
var click_rate: Int? = null
var click_rate: Double? = null

@JvmField
@Field
Expand Down

0 comments on commit c3e9e2b

Please sign in to comment.