Skip to content

Commit

Permalink
Add some fields to IpAddressReportResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
encry1024 committed Apr 17, 2018
1 parent 65f4c68 commit 16328ef
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,11 @@ pub struct DomainReportResponse {
pub struct IpAddressReportResponse {
pub response_code: i32,
pub verbose_msg: String,
pub country: Option<String>,
pub asn: Option<String>,
pub detected_downloaded_samples: Vec<ReferrerSample>,
pub undetected_downloaded_samples: Vec<ReferrerSample>,
pub resolutions: Vec<IpAddressResolutions>,
pub detected_urls: Vec<DetectedUrls>
}
pub detected_urls: Vec<DetectedUrls>,
}

0 comments on commit 16328ef

Please sign in to comment.