public PinterestGetPinsResponse GetPins(PinterestGetPinsOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return PinterestGetPinsResponse.ParseResponse(Raw.GetPins(options));
 }
 public SocialHttpResponse GetPins(PinterestGetPinsOptions options) {
     if (options == null) throw new ArgumentNullException("options");
     return Client.DoAuthenticatedGetRequest("https://api.pinterest.com/v1/boards/" + options.Username + "/" + options.Board + "/pins", options);
 }