Sha256: f80983ccfd39d8c2fa4e091d69b8fa9fd96fb3da68ffe58dd4d8ed239ff5b7f1
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
=begin #Fatture in Cloud API v2 - API Reference #Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 400.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol. The version of the OpenAPI document: 2.0.18 Contact: info@fattureincloud.it Generated by: https://openapi-generator.tech OpenAPI Generator version: 6.0.0 =end require 'date' require 'time' module FattureInCloud_Ruby_Sdk class F24Status PAID = "paid".freeze NOT_PAID = "not_paid".freeze REVERSED = "reversed".freeze # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) constantValues = F24Status.constants.select { |c| F24Status::const_get(c) == value } raise "Invalid ENUM value #{value} for class #F24Status" if constantValues.empty? value end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fattureincloud_ruby_sdk-2.0.9 | lib/fattureincloud_ruby_sdk/models/f24_status.rb |