ProductRequest
public class ProductRequest : MoltinRequest
An entry point to make API calls relating to Product
-
The API endpoint for this resource.
Declaration
Swift
public var endpoint: String -
A typealias which allows automatic casting of a collection to
[Product].Declaration
Swift
public typealias DefaultCollectionRequestHandler = CollectionRequestHandler<[Product]> -
A typealias which allows automatic casting of an object to
Product.Declaration
Swift
public typealias DefaultObjectRequestHandler = ObjectRequestHandler<Product> -
Return all instances of type
ProductDeclaration
Swift
@discardableResult public func all(completionHandler: @escaping DefaultCollectionRequestHandler) -> MoltinRequestParameters
completionHandlerThe handler to be called on success or failure
Return Value
A instance of
MoltinRequestwhich encapsulates the request. -
Return all instances of type
Product, cast to typeT, which must beCodable.Declaration
Swift
@discardableResult public func all<T: Codable>(completionHandler: @escaping CollectionRequestHandler<[T]>) -> MoltinRequestParameters
completionHandlerThe handler to be called on success or failure
Return Value
A instance of
MoltinRequestwhich encapsulates the request. -
Return all instances of type
ProductbyidDeclaration
Swift
@discardableResult public func get(forID id: String, completionHandler: @escaping DefaultObjectRequestHandler) -> MoltinRequestParameters
forIDThe ID of the object
completionHandlerThe handler to be called on success or failure
Return Value
A instance of
MoltinRequestwhich encapsulates the request. -
Return all instances of type
Productbyid, cast to typeT, which must beCodable.Declaration
Swift
@discardableResult public func get<T: Codable>(forID id: String, completionHandler: @escaping ObjectRequestHandler<T>) -> MoltinRequestParameters
forIDThe ID of the object
completionHandlerThe handler to be called on success or failure
Return Value
A instance of
MoltinRequestwhich encapsulates the request.
View on GitHub
ProductRequest Class Reference