Search in sources :

Example 1 with TagListResponse

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;
}
Also used : TagListResponse(com.cribbstechnologies.clients.mandrill.model.response.tags.TagListResponse) BaseTag(com.cribbstechnologies.clients.mandrill.model.response.tags.BaseTag)

Aggregations

BaseTag (com.cribbstechnologies.clients.mandrill.model.response.tags.BaseTag)1 TagListResponse (com.cribbstechnologies.clients.mandrill.model.response.tags.TagListResponse)1