Updates an ISO file.
(p *UpdateIsoParams)
| 3439 | |
| 3440 | // Updates an ISO file. |
| 3441 | func (s *ISOService) UpdateIso(p *UpdateIsoParams) (*UpdateIsoResponse, error) { |
| 3442 | resp, err := s.cs.newPostRequest("updateIso", p.toURLValues()) |
| 3443 | if err != nil { |
| 3444 | return nil, err |
| 3445 | } |
| 3446 | |
| 3447 | var r UpdateIsoResponse |
| 3448 | if err := json.Unmarshal(resp, &r); err != nil { |
| 3449 | return nil, err |
| 3450 | } |
| 3451 | |
| 3452 | return &r, nil |
| 3453 | } |
| 3454 | |
| 3455 | type UpdateIsoResponse struct { |
| 3456 | Account string `json:"account"` |
nothing calls this directly
no test coverage detected