Skip to content

Commit 1ebc378

Browse files
committed
Bumped v0.18.2
Signed-off-by: Vishal Rana <[email protected]>
1 parent 4912cce commit 1ebc378

File tree

7 files changed

+1
-13
lines changed

7 files changed

+1
-13
lines changed

barcode.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ type (
1717
}
1818

1919
BarcodeScanResponse struct {
20-
*Response
2120
Format string `json:"format"`
2221
Content string `json:"content"`
2322
ContentType string `json:"content_type"`

client.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@ type (
1414
logger *log.Logger
1515
}
1616

17-
Response struct {
18-
ID string `json:"id"`
19-
}
20-
2117
Download struct {
22-
*Response
18+
ID string `json:"id"`
2319
Name string `json:"name"`
2420
URL string `json:"url"`
2521
}

currency.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ type (
88
}
99

1010
CurrencyExchangeResponse struct {
11-
*Response
1211
Rates map[string]float64 `json:"rates"`
1312
UpdatedAt time.Time `json:"updated_at"`
1413
}

dns.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ type (
77
}
88

99
DNSLookupResponse struct {
10-
*Response
1110
Records []DNSRecord `json:"records"`
1211
}
1312

email.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ type (
66
}
77

88
EmailVerifyResponse struct {
9-
*Response
109
Syntax bool `json:"syntax"`
1110
Disposable bool `json:"disposable"`
1211
Domain bool `json:"domain"`

text.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ type (
99
}
1010

1111
TextSummaryResponse struct {
12-
*Response
1312
Summary string `json:"summary"`
1413
}
1514

@@ -18,7 +17,6 @@ type (
1817
}
1918

2019
TextSentimentResponse struct {
21-
*Response
2220
Subjectivity float32 `json:"subjectivity"`
2321
Polarity float32 `json:"polarity"`
2422
}
@@ -28,7 +26,6 @@ type (
2826
}
2927

3028
TextSpellcheckResponse struct {
31-
*Response
3229
Misspelled []*TextSpellcheckMisspelled `json:"misspelled"`
3330
}
3431

word.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ type (
66
}
77

88
WordLookupResponse struct {
9-
*Response
109
Pronunciation []string `json:"pronunciation"`
1110
Rhymes []string `json:"rhymes"`
1211
Nouns []*WordLookupResult `json:"nouns"`

0 commit comments

Comments
 (0)