Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 239
openapi_spec_hash: 49d468466a752f8ea72af00d00683f50
openapi_spec_hash: 401f6df4ddb87d8ac1109027a32db945
config_hash: 1ca082e374ef7000e2a5971e8da740e0
9 changes: 7 additions & 2 deletions lib/increase/models/check_transfer_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ class PhysicalCheck < Increase::Internal::Type::BaseModel
optional :check_voucher_image_file_id, String

# @!attribute note
# The descriptor that will be printed on the letter included with the check.
# A few paragraphs of text printed on the letter included with the check. It can
# contain at most 24 lines. Paragraphs will wrap at about 120 characters, but
# depending on your exact message, it might be slightly more or slightly less.
#
# @return [String, nil]
optional :note, String
Expand Down Expand Up @@ -264,7 +266,10 @@ class PhysicalCheck < Increase::Internal::Type::BaseModel
# `purpose: check_voucher_image`. For details on pricing and restrictions, see
# https://increase.com/documentation/originating-checks#printing-checks .
#
# @param note [String] The descriptor that will be printed on the letter included with the check.
# @param note [String]
# A few paragraphs of text printed on the letter included with the check. It can
# contain at most 24 lines. Paragraphs will wrap at about 120 characters, but
# depending on your exact message, it might be slightly more or slightly less.
#
# @param physical_check_batch_id [String]
# The identifier of the Physical Check Batch to mail this check as a part of.
Expand Down
321 changes: 320 additions & 1 deletion lib/increase/models/entity_create_params.rb

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion lib/increase/resources/entities.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Resources
class Entities
# Create an Entity
#
# @overload create(structure:, corporation: nil, description: nil, government_authority: nil, joint: nil, natural_person: nil, risk_rating: nil, supplemental_documents: nil, terms_agreements: nil, third_party_verification: nil, trust: nil, request_options: {})
# @overload create(structure:, corporation: nil, description: nil, government_authority: nil, joint: nil, natural_person: nil, risk_rating: nil, sole_proprietorship: nil, supplemental_documents: nil, terms_agreements: nil, third_party_verification: nil, trust: nil, request_options: {})
#
# @param structure [Symbol, Increase::Models::EntityCreateParams::Structure] The type of Entity to create.
#
Expand Down Expand Up @@ -33,6 +33,10 @@ class Entities
# An assessment of the entity's potential risk of involvement in financial crimes,
# such as money laundering.
#
# @param sole_proprietorship [Increase::Models::EntityCreateParams::SoleProprietorship]
# Details of the sole proprietorship entity to create. Required if `structure` is
# equal to `sole_proprietorship`.
#
# @param supplemental_documents [Array<Increase::Models::EntityCreateParams::SupplementalDocument>]
# Additional documentation associated with the entity.
#
Expand Down
8 changes: 6 additions & 2 deletions rbi/increase/models/check_transfer_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,9 @@ module Increase
sig { params(check_voucher_image_file_id: String).void }
attr_writer :check_voucher_image_file_id

# The descriptor that will be printed on the letter included with the check.
# A few paragraphs of text printed on the letter included with the check. It can
# contain at most 24 lines. Paragraphs will wrap at about 120 characters, but
# depending on your exact message, it might be slightly more or slightly less.
sig { returns(T.nilable(String)) }
attr_reader :note

Expand Down Expand Up @@ -448,7 +450,9 @@ module Increase
# `purpose: check_voucher_image`. For details on pricing and restrictions, see
# https://increase.com/documentation/originating-checks#printing-checks .
check_voucher_image_file_id: nil,
# The descriptor that will be printed on the letter included with the check.
# A few paragraphs of text printed on the letter included with the check. It can
# contain at most 24 lines. Paragraphs will wrap at about 120 characters, but
# depending on your exact message, it might be slightly more or slightly less.
note: nil,
# The identifier of the Physical Check Batch to mail this check as a part of.
physical_check_batch_id: nil,
Expand Down
Loading