Class: Telnyx::Models::InfringementClaimContestResponse::Data
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::InfringementClaimContestResponse::Data
- Defined in:
- lib/telnyx/models/infringement_claim_contest_response.rb
Overview
Defined Under Namespace
Modules: ClaimType, Resolution, Status Classes: ContestDocument, ContestHistory, Dir
Instance Attribute Summary collapse
- #claim_description ⇒ String?
-
#claim_type ⇒ Symbol, ...
Category of infringement being claimed.
- #claimant_contact ⇒ String?
- #claimant_name ⇒ String?
-
#contest_documents ⇒ Array<Telnyx::Models::InfringementClaimContestResponse::Data::ContestDocument>?
Aggregated across all customer contest submissions on this claim.
-
#dir ⇒ Telnyx::Models::InfringementClaimContestResponse::Data::Dir?
Snapshot of the DIR the claim is filed against, embedded for convenience.
- #dir_id ⇒ String?
- #enterprise_id ⇒ String?
-
#resolution ⇒ Symbol, ...
Set only when ‘status` is `resolved`.
-
#status ⇒ Symbol, ...
Lifecycle status.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(document_count: nil, notes: nil, submitted_at: nil) ⇒ Object
constructor
One round of customer contest evidence on an infringement claim.
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(document_count: nil, notes: nil, submitted_at: nil) ⇒ Object
One round of customer contest evidence on an infringement claim. The aggregated documents across rounds live on the parent claim’s ‘contest_documents`; this submission record carries only the per-round notes and document count.
|
|
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 119
|
Instance Attribute Details
#claim_description ⇒ String?
20 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 20 optional :claim_description, String |
#claim_type ⇒ Symbol, ...
Category of infringement being claimed.
26 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 26 optional :claim_type, enum: -> { Telnyx::Models::InfringementClaimContestResponse::Data::ClaimType } |
#claimant_contact ⇒ String?
31 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 31 optional :claimant_contact, String |
#claimant_name ⇒ String?
36 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 36 optional :claimant_name, String |
#contest_documents ⇒ Array<Telnyx::Models::InfringementClaimContestResponse::Data::ContestDocument>?
Aggregated across all customer contest submissions on this claim.
42 43 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 42 optional :contest_documents, -> { Telnyx::Internal::Type::ArrayOf[Telnyx::Models::InfringementClaimContestResponse::Data::ContestDocument] } |
#dir ⇒ Telnyx::Models::InfringementClaimContestResponse::Data::Dir?
Snapshot of the DIR the claim is filed against, embedded for convenience.
49 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 49 optional :dir, -> { Telnyx::Models::InfringementClaimContestResponse::Data::Dir } |
#dir_id ⇒ String?
54 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 54 optional :dir_id, String |
#enterprise_id ⇒ String?
59 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 59 optional :enterprise_id, String |
#resolution ⇒ Symbol, ...
Set only when ‘status` is `resolved`.
65 66 67 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 65 optional :resolution, enum: -> { Telnyx::Models::InfringementClaimContestResponse::Data::Resolution }, nil?: true |
#status ⇒ Symbol, ...
Lifecycle status. ‘pending` - newly filed; the DIR is auto-suspended. `contested` - you have submitted contest evidence; awaiting Telnyx review. `resolved` - final.
75 |
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 75 optional :status, enum: -> { Telnyx::Models::InfringementClaimContestResponse::Data::Status } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/telnyx/models/infringement_claim_contest_response.rb', line 166
|