com.paypal.base.rest.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-sdk Show documentation
Show all versions of rest-api-sdk Show documentation
PayPal SDK for integrating with the REST APIs
package com.paypal.base.rest;
/**
* HttpMethod enums used for HTTP method verbs
*/
public enum HttpMethod {
// Get Http Method
GET,
// Post Http Method
POST,
// Patch Http Method
PATCH,
// Put Http Method
PUT,
// Delete Http Method
DELETE;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy