21 lines
658 B
Go
21 lines
658 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
type AlibabaAlscUnionSupplyOuterItemShareOuterItemShareResult struct {
|
||
|
|
/*
|
||
|
|
淘宝短口令 */
|
||
|
|
TbWatchword *string `json:"tb_watchword,omitempty" `
|
||
|
|
|
||
|
|
/*
|
||
|
|
淘宝长口令 */
|
||
|
|
TbWatchwordSuggest *string `json:"tb_watchword_suggest,omitempty" `
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *AlibabaAlscUnionSupplyOuterItemShareOuterItemShareResult) SetTbWatchword(v string) *AlibabaAlscUnionSupplyOuterItemShareOuterItemShareResult {
|
||
|
|
s.TbWatchword = &v
|
||
|
|
return s
|
||
|
|
}
|
||
|
|
func (s *AlibabaAlscUnionSupplyOuterItemShareOuterItemShareResult) SetTbWatchwordSuggest(v string) *AlibabaAlscUnionSupplyOuterItemShareOuterItemShareResult {
|
||
|
|
s.TbWatchwordSuggest = &v
|
||
|
|
return s
|
||
|
|
}
|