Package zendeskapi.models.topics

Examples of zendeskapi.models.topics.TopicVote


    }
  }

  public IndividualTopicVoteResponse createVote(long topicId) throws ZendeskApiException {
    try {
      return genericPost("topics/" + topicId + "/vote.json", new TopicVote(), IndividualTopicVoteResponse.class);
    } catch (Exception e) {
      throw new ZendeskApiException(e);
    }
  }
View Full Code Here

TOP

Related Classes of zendeskapi.models.topics.TopicVote

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.