package http_model type DeleteSubAccountRequest struct { SubAccountId int `json:"sub_account_id"` } func NewDeleteSubAccountRequest() *DeleteSubAccountRequest { return new(DeleteSubAccountRequest) } func NewDeleteSubAccountResponse() *CommonResponse { return new(CommonResponse) }