use of com.cribbstechnologies.clients.mandrill.model.response.tags.TagListResponse in project Java-Mandrill-Wrapper by cribbstechnologies.
the class MandrillTagsRequest method getList.
public TagListResponse getList(BaseMandrillRequest tagsRequest) throws RequestFailedException {
TagListResponse response = new TagListResponse();
response.setList(((BaseMandrillAnonymousListResponse<BaseTag>) request.postRequest(tagsRequest, ServiceMethods.Tags.LIST, TagListResponse.class, nameTagReference)).getList());
return response;
}
Aggregations