Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/GetTransacBlockedContactsContacts.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**email** | **String** | Email address of the blocked or unsubscribed contact |
**senderEmail** | **String** | Sender email address of the blocked or unsubscribed contact |
**reason** | [**GetTransacBlockedContactsReason**](GetTransacBlockedContactsReason.md) | |
**blockedAt** | [**LocalDate**](LocalDate.md) | Date when the contact was blocked or unsubscribed on |
**blockedAt** | [**OffsetDateTime**] | Date when the contact was blocked or unsubscribed on |



4 changes: 2 additions & 2 deletions docs/RemainingCreditModelChild.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**sms** | **Long** | SMS Credits remaining for child account |
**email** | **Long** | Email Credits remaining for child account |
**sms** | **Double** | SMS Credits remaining for child account |
**email** | **Double** | Email Credits remaining for child account |



4 changes: 2 additions & 2 deletions docs/RemainingCreditModelReseller.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**sms** | **Long** | SMS Credits remaining for reseller account |
**email** | **Long** | Email Credits remaining for reseller account |
**sms** | **Double** | SMS Credits remaining for reseller account |
**email** | **Double** | Email Credits remaining for reseller account |



9 changes: 5 additions & 4 deletions src/main/java/sibModel/GetTransacBlockedContactsContacts.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.threeten.bp.LocalDate;
import org.threeten.bp.OffsetDateTime;
import sibModel.GetTransacBlockedContactsReason;

/**
Expand All @@ -40,7 +41,7 @@ public class GetTransacBlockedContactsContacts {
private GetTransacBlockedContactsReason reason = null;

@SerializedName("blockedAt")
private LocalDate blockedAt = null;
private OffsetDateTime blockedAt = null;

public GetTransacBlockedContactsContacts email(String email) {
this.email = email;
Expand Down Expand Up @@ -96,7 +97,7 @@ public void setReason(GetTransacBlockedContactsReason reason) {
this.reason = reason;
}

public GetTransacBlockedContactsContacts blockedAt(LocalDate blockedAt) {
public GetTransacBlockedContactsContacts blockedAt(OffsetDateTime blockedAt) {
this.blockedAt = blockedAt;
return this;
}
Expand All @@ -106,11 +107,11 @@ public GetTransacBlockedContactsContacts blockedAt(LocalDate blockedAt) {
* @return blockedAt
**/
@ApiModelProperty(example = "2017-05-01T12:30:00Z", required = true, value = "Date when the contact was blocked or unsubscribed on")
public LocalDate getBlockedAt() {
public OffsetDateTime getBlockedAt() {
return blockedAt;
}

public void setBlockedAt(LocalDate blockedAt) {
public void setBlockedAt(OffsetDateTime blockedAt) {
this.blockedAt = blockedAt;
}

Expand Down
16 changes: 8 additions & 8 deletions src/main/java/sibModel/RemainingCreditModelChild.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-03-23T17:54:09.105+05:30")
public class RemainingCreditModelChild {
@SerializedName("sms")
private Long sms = null;
private Double sms = null;

@SerializedName("email")
private Long email = null;
private Double email = null;

public RemainingCreditModelChild sms(Long sms) {
public RemainingCreditModelChild sms(Double sms) {
this.sms = sms;
return this;
}
Expand All @@ -45,15 +45,15 @@ public RemainingCreditModelChild sms(Long sms) {
* @return sms
**/
@ApiModelProperty(example = "500", required = true, value = "SMS Credits remaining for child account")
public Long getSms() {
public Double getSms() {
return sms;
}

public void setSms(Long sms) {
public void setSms(Double sms) {
this.sms = sms;
}

public RemainingCreditModelChild email(Long email) {
public RemainingCreditModelChild email(Double email) {
this.email = email;
return this;
}
Expand All @@ -63,11 +63,11 @@ public RemainingCreditModelChild email(Long email) {
* @return email
**/
@ApiModelProperty(example = "2000", required = true, value = "Email Credits remaining for child account")
public Long getEmail() {
public Double getEmail() {
return email;
}

public void setEmail(Long email) {
public void setEmail(Long Double) {
this.email = email;
}

Expand Down
16 changes: 8 additions & 8 deletions src/main/java/sibModel/RemainingCreditModelReseller.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-03-23T17:54:09.105+05:30")
public class RemainingCreditModelReseller {
@SerializedName("sms")
private Long sms = null;
private Double sms = null;

@SerializedName("email")
private Long email = null;
private Double email = null;

public RemainingCreditModelReseller sms(Long sms) {
public RemainingCreditModelReseller sms(Double sms) {
this.sms = sms;
return this;
}
Expand All @@ -44,15 +44,15 @@ public RemainingCreditModelReseller sms(Long sms) {
* @return sms
**/
@ApiModelProperty(example = "12900", required = true, value = "SMS Credits remaining for reseller account")
public Long getSms() {
public Double getSms() {
return sms;
}

public void setSms(Long sms) {
public void setSms(Double sms) {
this.sms = sms;
}

public RemainingCreditModelReseller email(Long email) {
public RemainingCreditModelReseller email(Double email) {
this.email = email;
return this;
}
Expand All @@ -62,11 +62,11 @@ public RemainingCreditModelReseller email(Long email) {
* @return email
**/
@ApiModelProperty(example = "2000000", required = true, value = "Email Credits remaining for reseller account")
public Long getEmail() {
public Double getEmail() {
return email;
}

public void setEmail(Long email) {
public void setEmail(Double email) {
this.email = email;
}

Expand Down