Skip to content

Commit ad81845

Browse files
committed
Update readme comments
1 parent 98b1178 commit ad81845

File tree

5 files changed

+9
-15
lines changed

5 files changed

+9
-15
lines changed

docs/SendEmailAttachment.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,5 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**content** | **byte[]** | Base64 encoded chunk data of the attachment generated on the fly | [optional]
8-
**name** | **String** | Required for content. Name of the attachment | [optional]
9-
10-
11-
7+
**content** | **byte[]** | Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end ) | [optional]
8+
**name** | **String** | Required for content. Name of the attachment | [optional]

docs/SendSmtpEmailAttachment.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,5 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**url** | **String** | Absolute url of the attachment (no local file). | [optional]
8-
**content** | **byte[]** | Base64 encoded chunk data of the attachment generated on the fly | [optional]
9-
**name** | **String** | Required for content. Name of the attachment | [optional]
10-
11-
12-
8+
**content** | **byte[]** | Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end ) | [optional]
9+
**name** | **String** | Required for content. Name of the attachment | [optional]

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>sib-api-v3-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>sib-api-v3-sdk</name>
8-
<version>1.0.0</version>
8+
<version>1.0.1</version>
99
<url>https://github.com/sendinblue/APIv3-java-library</url>
1010
<description>SendinBlue&#39;s API v3 Java Library</description>
1111
<scm>

src/main/java/sibModel/SendEmailAttachment.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ public SendEmailAttachment content(byte[] content) {
4040
}
4141

4242
/**
43-
* Base64 encoded chunk data of the attachment generated on the fly
43+
* Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end )
4444
* @return content
4545
**/
46-
@ApiModelProperty(example = "b3JkZXIucGRm", value = "Base64 encoded chunk data of the attachment generated on the fly")
46+
@ApiModelProperty(example = "b3JkZXIucGRm", value = "Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end )")
4747
public byte[] getContent() {
4848
return content;
4949
}

src/main/java/sibModel/SendSmtpEmailAttachment.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ public SendSmtpEmailAttachment content(byte[] content) {
6161
}
6262

6363
/**
64-
* Base64 encoded chunk data of the attachment generated on the fly
64+
* Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end )
6565
* @return content
6666
**/
67-
@ApiModelProperty(example = "b3JkZXIucGRm", value = "Base64 encoded chunk data of the attachment generated on the fly")
67+
@ApiModelProperty(example = "b3JkZXIucGRm", value = "Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end )")
6868
public byte[] getContent() {
6969
return content;
7070
}

0 commit comments

Comments
 (0)