|
|
|
@ -117,7 +117,11 @@ type MndtRltdInf struct { |
|
|
|
//ElctrncSgntr is optional
|
|
|
|
} |
|
|
|
|
|
|
|
// NewMandateInfo truncates id to 35 characters
|
|
|
|
func NewMandateInfo(id, signatureDate string) MndtRltdInf { |
|
|
|
if len(id) > 35 { |
|
|
|
id = id[0:35] |
|
|
|
} |
|
|
|
return MndtRltdInf{ |
|
|
|
Id: id, |
|
|
|
SignatureDate: signatureDate, |
|
|
|
|