class Postmen::Manifest

A manifest object object

@see docs.postmen.com/api.html#a-manifest-object API Documentation

Public Class Methods

all(options = {}) click to toggle source

Returns all manifests

@see ManifestCollection#all @return [ManifestCollection] Collection of Manifests

# File lib/postmen/manifest.rb, line 18
def self.all(options = {})
  ManifestCollection.all(options)
end
create(params) click to toggle source

Creates an instance of manifest

@see ManifestCollection#create @return [Manifest]

# File lib/postmen/manifest.rb, line 34
def self.create(params)
  ManifestCollection.create(params)
end
find(id) click to toggle source

Fetches single manifest

@see ManifestCollection#find @return [Manifest]

# File lib/postmen/manifest.rb, line 26
def self.find(id)
  ManifestCollection.find(id)
end