Class: Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/openlayer/models/governance/frameworks/document_retrieve_response.rb,
sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs

Defined Under Namespace

Classes: Rule, Subsection

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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(id:, date_created:, date_updated:, framework_id:, title:, sections: nil) ⇒ Object

Some parameter documentations has been truncated, see Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse for more details.

Parameters:

  • id (String) —

    The document id.

  • date_created (Time) —

    The creation date.

  • date_updated (Time) —

    The last update date.

  • framework_id (String) —

    The framework the document belongs to.

  • title (String) —

    The document title.

  • sections (Array<Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section>) (defaults to: nil) —

    The document's sections, in display order. Only returned when retrieving a singl



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
# File 'lib/openlayer/models/governance/frameworks/document_retrieve_response.rb', line 66

class Section < Openlayer::Internal::Type::BaseModel
  # @!attribute number
  #   The section number as it appears in the source standard.
  #
  #   @return [String]
  required :number, String

  # @!attribute sort_order
  #   The position of the section within the document.
  #
  #   @return [Integer]
  required :sort_order, Integer, api_name: :sortOrder

  # @!attribute title
  #   The section title.
  #
  #   @return [String]
  required :title, String

  # @!attribute text
  #   The section text.
  #
  #   @return [String, nil]
  optional :text, String, nil?: true

  response_only do
    # @!attribute id
    #   The section id.
    #
    #   @return [String]
    required :id, String

    # @!attribute document_id
    #   The document the section belongs to.
    #
    #   @return [String]
    required :document_id, String, api_name: :documentId

    # @!attribute rule_count
    #   How many rules are linked to this section, including its subsections. Use it to
    #   decide whether to fetch the section's rules.
    #
    #   @return [Integer, nil]
    optional :rule_count, Integer, api_name: :ruleCount

    # @!attribute rules
    #   The rules linked directly to this section.
    #
    #   @return [Array<Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule>, nil]
    optional :rules,
             -> { Openlayer::Internal::Type::ArrayOf[Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule] }

    # @!attribute subsections
    #   The section's subsections, in display order.
    #
    #   @return [Array<Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection>, nil]
    optional :subsections,
             -> { Openlayer::Internal::Type::ArrayOf[Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection] }
  end

  # @!method initialize(id:, document_id:, number:, sort_order:, title:, rule_count: nil, rules: nil, subsections: nil, text: nil)
  #   Some parameter documentations has been truncated, see
  #   {Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section}
  #   for more details.
  #
  #   @param id [String] The section id.
  #
  #   @param document_id [String] The document the section belongs to.
  #
  #   @param number [String] The section number as it appears in the source standard.
  #
  #   @param sort_order [Integer] The position of the section within the document.
  #
  #   @param title [String] The section title.
  #
  #   @param rule_count [Integer] How many rules are linked to this section, including its subsections. Use it to
  #
  #   @param rules [Array<Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule>] The rules linked directly to this section.
  #
  #   @param subsections [Array<Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection>] The section's subsections, in display order.
  #
  #   @param text [String, nil] The section text.

  class Rule < Openlayer::Internal::Type::BaseModel
    # @!attribute name
    #   The rule name.
    #
    #   @return [String]
    required :name, String

    # @!attribute scope
    #   Whether the rule is evaluated once for the whole workspace, or once per project
    #   the rule's frameworks apply to.
    #
    #   @return [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::Scope]
    required :scope,
             enum: -> { Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::Scope }

    # @!attribute type
    #   `platform` rules are evaluated automatically from the state of your Openlayer
    #   workspace. `evidence` rules are satisfied by attaching evidence.
    #
    #   @return [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::Type]
    required :type,
             enum: -> { Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::Type }

    # @!attribute automation_params
    #   Configuration for the platform check, when the automation takes parameters.
    #
    #   @return [Hash{Symbol=>Object}, nil]
    optional :automation_params,
             Openlayer::Internal::Type::HashOf[Openlayer::Internal::Type::Unknown],
             api_name: :automationParams,
             nil?: true

    # @!attribute automation_type
    #   Which workspace signal a platform rule checks, for example
    #   `monitoring_mode_enabled`, `test_setup`, or `project_owner_set`. `null` for
    #   evidence rules.
    #
    #   @return [String, nil]
    optional :automation_type, String, api_name: :automationType, nil?: true

    # @!attribute deactivated
    #   Whether the rule is excluded from compliance calculations.
    #
    #   @return [Boolean, nil]
    optional :deactivated, Openlayer::Internal::Type::Boolean

    # @!attribute description
    #   What the rule requires.
    #
    #   @return [String, nil]
    optional :description, String, nil?: true

    # @!attribute evidence_type
    #   The kind of evidence that satisfies the rule. `null` for platform rules.
    #
    #   @return [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::EvidenceType, nil]
    optional :evidence_type,
             enum: -> { Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::EvidenceType },
             api_name: :evidenceType,
             nil?: true

    # @!attribute renewal_cadence_days
    #   How often evidence must be renewed, in days. Once evidence is older than this,
    #   the rule result becomes `due_soon` and then `failing`.
    #
    #   @return [Integer, nil]
    optional :renewal_cadence_days, Integer, api_name: :renewalCadenceDays, nil?: true

    response_only do
      # @!attribute id
      #   The rule id.
      #
      #   @return [String]
      required :id, String

      # @!attribute date_created
      #   The creation date.
      #
      #   @return [Time, nil]
      optional :date_created, Time, api_name: :dateCreated

      # @!attribute date_updated
      #   The last update date.
      #
      #   @return [Time, nil]
      optional :date_updated, Time, api_name: :dateUpdated

      # @!attribute immutable
      #   Whether the rule is managed by Openlayer and cannot be edited.
      #
      #   @return [Boolean, nil]
      optional :immutable, Openlayer::Internal::Type::Boolean
    end

    # @!method initialize(id:, name:, scope:, type:, automation_params: nil, automation_type: nil, date_created: nil, date_updated: nil, deactivated: nil, description: nil, evidence_type: nil, immutable: nil, renewal_cadence_days: nil)
    #   Some parameter documentations has been truncated, see
    #   {Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule}
    #   for more details.
    #
    #   @param id [String] The rule id.
    #
    #   @param name [String] The rule name.
    #
    #   @param scope [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::Scope] Whether the rule is evaluated once for the whole workspace, or once per project
    #
    #   @param type [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::Type] `platform` rules are evaluated automatically from the state of your Openlayer wo
    #
    #   @param automation_params [Hash{Symbol=>Object}, nil] Configuration for the platform check, when the automation takes parameters.
    #
    #   @param automation_type [String, nil] Which workspace signal a platform rule checks, for example `monitoring_mode_enab
    #
    #   @param date_created [Time] The creation date.
    #
    #   @param date_updated [Time] The last update date.
    #
    #   @param deactivated [Boolean] Whether the rule is excluded from compliance calculations.
    #
    #   @param description [String, nil] What the rule requires.
    #
    #   @param evidence_type [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule::EvidenceType, nil] The kind of evidence that satisfies the rule. `null` for platform rules.
    #
    #   @param immutable [Boolean] Whether the rule is managed by Openlayer and cannot be edited.
    #
    #   @param renewal_cadence_days [Integer, nil] How often evidence must be renewed, in days. Once evidence is older than this, t

    # Whether the rule is evaluated once for the whole workspace, or once per project
    # the rule's frameworks apply to.
    #
    # @see Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule#scope
    module Scope
      extend Openlayer::Internal::Type::Enum

      PROJECT = :project
      WORKSPACE = :workspace

      # @!method self.values
      #   @return [Array<Symbol>]
    end

    # `platform` rules are evaluated automatically from the state of your Openlayer
    # workspace. `evidence` rules are satisfied by attaching evidence.
    #
    # @see Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule#type
    module Type
      extend Openlayer::Internal::Type::Enum

      PLATFORM = :platform
      EVIDENCE = :evidence

      # @!method self.values
      #   @return [Array<Symbol>]
    end

    # The kind of evidence that satisfies the rule. `null` for platform rules.
    #
    # @see Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule#evidence_type
    module EvidenceType
      extend Openlayer::Internal::Type::Enum

      DOCUMENT = :document
      TEXT = :text
      URL = :url
      CATEGORY_VALUE = :categoryValue

      # @!method self.values
      #   @return [Array<Symbol>]
    end
  end

  class Subsection < Openlayer::Internal::Type::BaseModel
    # @!attribute number
    #   The subsection number as it appears in the source standard.
    #
    #   @return [String]
    required :number, String

    # @!attribute sort_order
    #   The position of the subsection within its section.
    #
    #   @return [Integer]
    required :sort_order, Integer, api_name: :sortOrder

    # @!attribute title
    #   The subsection title.
    #
    #   @return [String]
    required :title, String

    # @!attribute text
    #   The subsection text. This is the requirement your rules are mapped against.
    #
    #   @return [String, nil]
    optional :text, String, nil?: true

    response_only do
      # @!attribute id
      #   The subsection id.
      #
      #   @return [String]
      required :id, String

      # @!attribute section_id
      #   The section the subsection belongs to.
      #
      #   @return [String]
      required :section_id, String, api_name: :sectionId

      # @!attribute rule_count
      #   How many rules are linked to this subsection.
      #
      #   @return [Integer, nil]
      optional :rule_count, Integer, api_name: :ruleCount

      # @!attribute rules
      #   The rules linked to this subsection.
      #
      #   @return [Array<Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule>, nil]
      optional :rules,
               -> { Openlayer::Internal::Type::ArrayOf[Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule] }
    end

    # @!method initialize(id:, number:, section_id:, sort_order:, title:, rule_count: nil, rules: nil, text: nil)
    #   @param id [String] The subsection id.
    #
    #   @param number [String] The subsection number as it appears in the source standard.
    #
    #   @param section_id [String] The section the subsection belongs to.
    #
    #   @param sort_order [Integer] The position of the subsection within its section.
    #
    #   @param title [String] The subsection title.
    #
    #   @param rule_count [Integer] How many rules are linked to this subsection.
    #
    #   @param rules [Array<Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule>] The rules linked to this subsection.
    #
    #   @param text [String, nil] The subsection text. This is the requirement your rules are mapped against.

    class Rule < Openlayer::Internal::Type::BaseModel
      # @!attribute name
      #   The rule name.
      #
      #   @return [String]
      required :name, String

      # @!attribute scope
      #   Whether the rule is evaluated once for the whole workspace, or once per project
      #   the rule's frameworks apply to.
      #
      #   @return [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::Scope]
      required :scope,
               enum: -> { Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::Scope }

      # @!attribute type
      #   `platform` rules are evaluated automatically from the state of your Openlayer
      #   workspace. `evidence` rules are satisfied by attaching evidence.
      #
      #   @return [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::Type]
      required :type,
               enum: -> { Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::Type }

      # @!attribute automation_params
      #   Configuration for the platform check, when the automation takes parameters.
      #
      #   @return [Hash{Symbol=>Object}, nil]
      optional :automation_params,
               Openlayer::Internal::Type::HashOf[Openlayer::Internal::Type::Unknown],
               api_name: :automationParams,
               nil?: true

      # @!attribute automation_type
      #   Which workspace signal a platform rule checks, for example
      #   `monitoring_mode_enabled`, `test_setup`, or `project_owner_set`. `null` for
      #   evidence rules.
      #
      #   @return [String, nil]
      optional :automation_type, String, api_name: :automationType, nil?: true

      # @!attribute deactivated
      #   Whether the rule is excluded from compliance calculations.
      #
      #   @return [Boolean, nil]
      optional :deactivated, Openlayer::Internal::Type::Boolean

      # @!attribute description
      #   What the rule requires.
      #
      #   @return [String, nil]
      optional :description, String, nil?: true

      # @!attribute evidence_type
      #   The kind of evidence that satisfies the rule. `null` for platform rules.
      #
      #   @return [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::EvidenceType, nil]
      optional :evidence_type,
               enum: -> { Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::EvidenceType },
               api_name: :evidenceType,
               nil?: true

      # @!attribute renewal_cadence_days
      #   How often evidence must be renewed, in days. Once evidence is older than this,
      #   the rule result becomes `due_soon` and then `failing`.
      #
      #   @return [Integer, nil]
      optional :renewal_cadence_days, Integer, api_name: :renewalCadenceDays, nil?: true

      response_only do
        # @!attribute id
        #   The rule id.
        #
        #   @return [String]
        required :id, String

        # @!attribute date_created
        #   The creation date.
        #
        #   @return [Time, nil]
        optional :date_created, Time, api_name: :dateCreated

        # @!attribute date_updated
        #   The last update date.
        #
        #   @return [Time, nil]
        optional :date_updated, Time, api_name: :dateUpdated

        # @!attribute immutable
        #   Whether the rule is managed by Openlayer and cannot be edited.
        #
        #   @return [Boolean, nil]
        optional :immutable, Openlayer::Internal::Type::Boolean
      end

      # @!method initialize(id:, name:, scope:, type:, automation_params: nil, automation_type: nil, date_created: nil, date_updated: nil, deactivated: nil, description: nil, evidence_type: nil, immutable: nil, renewal_cadence_days: nil)
      #   Some parameter documentations has been truncated, see
      #   {Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule}
      #   for more details.
      #
      #   @param id [String] The rule id.
      #
      #   @param name [String] The rule name.
      #
      #   @param scope [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::Scope] Whether the rule is evaluated once for the whole workspace, or once per project
      #
      #   @param type [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::Type] `platform` rules are evaluated automatically from the state of your Openlayer wo
      #
      #   @param automation_params [Hash{Symbol=>Object}, nil] Configuration for the platform check, when the automation takes parameters.
      #
      #   @param automation_type [String, nil] Which workspace signal a platform rule checks, for example `monitoring_mode_enab
      #
      #   @param date_created [Time] The creation date.
      #
      #   @param date_updated [Time] The last update date.
      #
      #   @param deactivated [Boolean] Whether the rule is excluded from compliance calculations.
      #
      #   @param description [String, nil] What the rule requires.
      #
      #   @param evidence_type [Symbol, Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule::EvidenceType, nil] The kind of evidence that satisfies the rule. `null` for platform rules.
      #
      #   @param immutable [Boolean] Whether the rule is managed by Openlayer and cannot be edited.
      #
      #   @param renewal_cadence_days [Integer, nil] How often evidence must be renewed, in days. Once evidence is older than this, t

      # Whether the rule is evaluated once for the whole workspace, or once per project
      # the rule's frameworks apply to.
      #
      # @see Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule#scope
      module Scope
        extend Openlayer::Internal::Type::Enum

        PROJECT = :project
        WORKSPACE = :workspace

        # @!method self.values
        #   @return [Array<Symbol>]
      end

      # `platform` rules are evaluated automatically from the state of your Openlayer
      # workspace. `evidence` rules are satisfied by attaching evidence.
      #
      # @see Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule#type
      module Type
        extend Openlayer::Internal::Type::Enum

        PLATFORM = :platform
        EVIDENCE = :evidence

        # @!method self.values
        #   @return [Array<Symbol>]
      end

      # The kind of evidence that satisfies the rule. `null` for platform rules.
      #
      # @see Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection::Rule#evidence_type
      module EvidenceType
        extend Openlayer::Internal::Type::Enum

        DOCUMENT = :document
        TEXT = :text
        URL = :url
        CATEGORY_VALUE = :categoryValue

        # @!method self.values
        #   @return [Array<Symbol>]
      end
    end
  end
end

Instance Attribute Details

#document_id ⇒ String

Returns the value of attribute document_id.

Returns:

  • (String)


74
75
76
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 74

def document_id
  @document_id
end

#id ⇒ String

Returns the value of attribute id.

Returns:

  • (String)


72
73
74
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 72

def id
  @id
end

#number ⇒ String

The section number as it appears in the source standard.

Parameters:

  • value (String)

Returns:

  • (String)


71
# File 'lib/openlayer/models/governance/frameworks/document_retrieve_response.rb', line 71

required :number, String

#rule_count ⇒ Integer? (readonly)

Returns the value of attribute rule_count.

Returns:

  • (Integer, nil)


76
77
78
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 76

def rule_count
  @rule_count
end

#rules ⇒ ::Array[Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Rule]? (readonly)

Returns the value of attribute rules.



80
81
82
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 80

def rules
  @rules
end

#sort_order ⇒ Integer

The position of the section within the document.

Parameters:

  • value (Integer)

Returns:

  • (Integer)


77
# File 'lib/openlayer/models/governance/frameworks/document_retrieve_response.rb', line 77

required :sort_order, Integer, api_name: :sortOrder

#subsections ⇒ ::Array[Openlayer::Models::Governance::Frameworks::DocumentRetrieveResponse::Section::Subsection]? (readonly)

Returns the value of attribute subsections.



86
87
88
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 86

def subsections
  @subsections
end

#text ⇒ String?

The section text.

Parameters:

  • value (String, nil)

Returns:

  • (String, nil)


89
# File 'lib/openlayer/models/governance/frameworks/document_retrieve_response.rb', line 89

optional :text, String, nil?: true

#title ⇒ String

The section title.

Parameters:

  • value (String)

Returns:

  • (String)


83
# File 'lib/openlayer/models/governance/frameworks/document_retrieve_response.rb', line 83

required :title, String

Class Method Details

.values ⇒ Array<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/openlayer/models/governance/frameworks/document_retrieve_response.rb', line 313

Instance Method Details

#rule_count= ⇒ Integer (readonly)

Parameters:

  • (Integer)

Returns:

  • (Integer)


78
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 78

def rule_count=: (Integer) -> Integer

#rules= ⇒ Object (readonly)



82
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 82

def rules=: (

#subsections= ⇒ Object (readonly)



88
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 88

def subsections=: (

#to_hash ⇒ {

Returns:

  • ({)


104
# File 'sig/openlayer/models/governance/frameworks/document_retrieve_response.rbs', line 104

def to_hash: -> {