Skip to content

Commit c0f776a

Browse files
SDK regenerated by CI server [ci skip]
1 parent 76bd746 commit c0f776a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

dev/api/models/signature.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ type ISignature interface {
4848
SetIsValid(value *bool)
4949
GetSignatureType() *string
5050
SetSignatureType(value *string)
51-
GetSignatureValue() *os.File
52-
SetSignatureValue(value *os.File)
51+
GetSignatureValue() *string
52+
SetSignatureValue(value *string)
5353
GetSignTime() *Time
5454
SetSignTime(value *Time)
5555
GetSubjectName() *string
@@ -75,7 +75,7 @@ type Signature struct {
7575

7676
// The REST response with a document signature collection.
7777
// This response is returned by the Service when handling any "https://api.aspose.cloud/v4.0/words/Test.doc/signatures" REST API requests.
78-
SignatureValue *os.File `json:"SignatureValue,omitempty"`
78+
SignatureValue *string `json:"SignatureValue,omitempty"`
7979

8080
// The REST response with a document signature collection.
8181
// This response is returned by the Service when handling any "https://api.aspose.cloud/v4.0/words/Test.doc/signatures" REST API requests.
@@ -144,12 +144,12 @@ func (obj *Signature) Deserialize(json map[string]interface{}) {
144144
}
145145

146146
if jsonValue, exists := json["SignatureValue"]; exists {
147-
if parsedValue, valid := jsonValue.(*os.File); valid {
147+
if parsedValue, valid := jsonValue.(string); valid {
148148
obj.SignatureValue = &parsedValue
149149
}
150150

151151
} else if jsonValue, exists := json["signatureValue"]; exists {
152-
if parsedValue, valid := jsonValue.(*os.File); valid {
152+
if parsedValue, valid := jsonValue.(string); valid {
153153
obj.SignatureValue = &parsedValue
154154
}
155155

@@ -235,11 +235,11 @@ func (obj *Signature) SetSignatureType(value *string) {
235235
obj.SignatureType = value
236236
}
237237

238-
func (obj *Signature) GetSignatureValue() *os.File {
238+
func (obj *Signature) GetSignatureValue() *string {
239239
return obj.SignatureValue
240240
}
241241

242-
func (obj *Signature) SetSignatureValue(value *os.File) {
242+
func (obj *Signature) SetSignatureValue(value *string) {
243243
obj.SignatureValue = value
244244
}
245245

0 commit comments

Comments
 (0)