Package zendeskapi.models.requests

Examples of zendeskapi.models.requests.Request


    Assert.assertTrue(API.getRequests().getAllRequests().getCount() > 0);
  }
 
  @Test
  public void testCreateUpdateAndDeleteRequest() throws Exception {
    Request request = new Request();
    Comment comment = new Comment();
    comment.setBody("Test comment 1");
    request.setSubject("Test request 1");
    request.setComment(comment);
    IndividualRequestResponse irr = API.getRequests().createRequest(request);
    Assert.assertTrue(irr.getRequest().getId() > 0);
   
    IndividualRequestResponse irrById = API.getRequests().getRequestById(irr.getRequest().getId());
    Assert.assertEquals(irrById.getRequest().getId(), irr.getRequest().getId());
View Full Code Here


   * @param comment
   * @return IndividualRequestResponse
   * @throws ZendeskApiException
   */
  public IndividualRequestResponse updateRequest(long id, Comment comment) throws ZendeskApiException {
    Request request = new Request();
    request.setComment(comment);
    IndividualRequestResponse individualRequestResponse = new IndividualRequestResponse();
    individualRequestResponse.setRequest(request);
    try {
      return genericPut("requests/" + id + ".json", individualRequestResponse, IndividualRequestResponse.class);
    } catch (Exception e) {
      throw new ZendeskApiException("Creation of request " + request.getSubject() + " failed", e);
    }
  }
View Full Code Here

TOP

Related Classes of zendeskapi.models.requests.Request

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.