DeletePhotoUrlRequest.go 285 B

1234567891011121314
  1. package http_model
  2. type DeletePhotoUrlRequest struct {
  3. PhotoUrl string `json:"photo_url"`
  4. }
  5. func NewDeletePhotoUrlRequest() *DeletePhotoUrlRequest {
  6. return new(DeletePhotoUrlRequest)
  7. }
  8. func NewDeletePhotoUrlResponse() *CommonResponse {
  9. resp := new(CommonResponse)
  10. return resp
  11. }