delete_account.go 402 B

12345678910111213141516
  1. package http_model
  2. type DeleteAccountRequest struct {
  3. TalentId string `json:"talent_id"`
  4. PlatformID string `json:"platform_id"`
  5. PlatformNickname string `json:"platform_nickname"`
  6. }
  7. func NewDeleteAccountRequest() *DeleteAccountRequest {
  8. return new(DeleteAccountRequest)
  9. }
  10. func NewDeleteAccountResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. return resp
  13. }