Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 521 Bytes

HypermediaLink.md

File metadata and controls

22 lines (16 loc) · 521 Bytes

WorldnetPayments::HypermediaLink

Properties

Name Type Description Notes
rel String Keyword that represents the action that the link is supposed to perform. [optional]
method String The HTTP method or verb. [optional]
href String The actual request URL. [optional]

Example

require 'worldnet_payments'

instance = WorldnetPayments::HypermediaLink.new(
  rel: null,
  method: POST,
  href: null
)