Sha256: e7e34be8ad19269067ea431ed6c0c7e72a8c5bc1d70fbea6cfb4404e6d9c3089
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
package org.embulk.input.marketo; import com.fasterxml.jackson.databind.node.ObjectNode; import org.embulk.input.marketo.model.MarketoField; import java.io.File; import java.util.Date; import java.util.List; import java.util.Set; /** * Created by tai.khuu on 9/6/17. */ public interface MarketoService { List<MarketoField> describeLead(); File extractLead(Date startTime, Date endTime, List<String> extractedFields, String filterField, int pollingTimeIntervalSecond, int bulkJobTimeoutSecond); File extractAllActivity(List<Integer> activityTypeIds, Date startTime, Date endTime, int pollingTimeIntervalSecond, int bulkJobTimeoutSecond); Iterable<ObjectNode> getAllListLead(List<String> extractFields, Iterable<ObjectNode> inputListIds); Iterable<ObjectNode> getAllProgramLead(List<String> extractFields, Iterable<ObjectNode> requestProgs); Iterable<ObjectNode> getCampaign(); Iterable<ObjectNode> getPrograms(); Iterable<ObjectNode> getProgramsByIds(Set<String> ids); Iterable<ObjectNode> getProgramsByTag(String tagType, String tagValue); Iterable<ObjectNode> getProgramsByDateRange(Date earliestUpdatedAt, Date latestUpdatedAt, String filterType, List<String> filterValues); Iterable<ObjectNode> getCustomObject(String customObjectApiName, String filterType, Set<String> filterValues, String returnFields); Iterable<ObjectNode> getCustomObject(String customObjectAPIName, String customObjectFilterType, String customObjectFields, Integer fromValue, Integer toValue); List<MarketoField> describeCustomObject(String customObjectAPIName); Iterable<ObjectNode> getActivityTypes(); Iterable<ObjectNode> getListsByIds(Set<String> ids); Iterable<ObjectNode> getLists(); }
Version data entries
2 entries across 2 versions & 1 rubygems