Package zendeskapi.models.macros

Examples of zendeskapi.models.macros.IndividualMacroResponse


   * @param macro
   * @return
   * @throws ZendeskApiException
   */
  public IndividualMacroResponse createMacro(Macro macro) throws ZendeskApiException {
    IndividualMacroResponse individualMacroResponse = new IndividualMacroResponse();
    individualMacroResponse.setMacro(macro);
    try {
      return genericPost("macros.json", individualMacroResponse, IndividualMacroResponse.class);
    } catch (Exception e) {
      throw new ZendeskApiException("Creation of macro " + macro.getTitle() + " failed", e);
    }
View Full Code Here


   * @param macro
   * @return
   * @throws ZendeskApiException
   */
  public IndividualMacroResponse updateMacro(Macro macro) throws ZendeskApiException {
    IndividualMacroResponse individualMacroResponse = new IndividualMacroResponse();
    individualMacroResponse.setMacro(macro);
    try {
      return genericPut("macros/" + macro.getId() + ".json", individualMacroResponse, IndividualMacroResponse.class);
    } catch (Exception e) {
      throw new ZendeskApiException("Update of macro " + macro.getTitle() + " failed", e);
    }
View Full Code Here

TOP

Related Classes of zendeskapi.models.macros.IndividualMacroResponse

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.