Class: EInvoiceAPI::Models::LookupRetrieveParticipantsResponse::Participant::DocumentType
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- EInvoiceAPI::Models::LookupRetrieveParticipantsResponse::Participant::DocumentType
- Defined in:
- lib/e_invoice_api/models/lookup_retrieve_participants_response.rb
Instance Attribute Summary collapse
-
#scheme ⇒ String
Document type scheme.
-
#value ⇒ String
Document type value.
Instance Method Summary collapse
-
#initialize(peppol_id: , peppol_scheme: , document_types: nil, entities: nil) ⇒ Object
constructor
Represents a Peppol participant with their details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(peppol_id: , peppol_scheme: , document_types: nil, entities: nil) ⇒ Object
Represents a Peppol participant with their details
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/e_invoice_api/models/lookup_retrieve_participants_response.rb', line 89 class DocumentType < EInvoiceAPI::Internal::Type::BaseModel # @!attribute scheme # Document type scheme # # @return [String] required :scheme, String # @!attribute value # Document type value # # @return [String] required :value, String # @!method initialize(scheme:, value:) # Represents a supported document type # # @param scheme [String] Document type scheme # # @param value [String] Document type value end |
Instance Attribute Details
#scheme ⇒ String
Document type scheme
94 |
# File 'lib/e_invoice_api/models/lookup_retrieve_participants_response.rb', line 94 required :scheme, String |
#value ⇒ String
Document type value
100 |
# File 'lib/e_invoice_api/models/lookup_retrieve_participants_response.rb', line 100 required :value, String |