All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.poynt.postman.model.PostmanCollection Maven / Gradle / Ivy

The newest version!
package co.poynt.postman.model;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class PostmanCollection {
	public PostmanInfo info;
	public List item;

	public Map folderLookup = new HashMap<>();

	public void init() {
		for (PostmanFolder f : item) {
			folderLookup.put(f.name, f);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy