The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::API::Stripe::Connect::Account::Branding - A Stripe Account Branding Object

SYNOPSIS

VERSION

    0.1

DESCRIPTION

Settings used to apply the account’s branding to email receipts, invoices, Checkout, and other products.

CONSTRUCTOR

new( %ARG )

Creates a new Net::API::Stripe objects. It may also take an hash like arguments, that also are method of the same name.

verbose

Toggles verbose mode on/off

debug

Toggles debug mode on/off

METHODS

icon string (expandable)

(ID of a file upload) An icon for the account. Must be square and at least 128px x 128px.

When expanded, this is a Net::API::Stripe::File object.

logo string (expandable)

(ID of a file upload) A logo for the account that will be used in Checkout instead of the icon and without the account’s name next to it if provided. Must be at least 128px x 128px.

When expanded, this is a Net::API::Stripe::File object.

primary_color string

A CSS hex color value representing the primary branding color for this account

API SAMPLE

        {
          "id": "acct_19eGgRCeyNCl6xYZ",
          "object": "account",
          "business_profile": {
                "mcc": null,
                "name": "My Shop, Inc",
                "product_description": "Great products shipping all over the world",
                "support_address": {
                  "city": "Tokyo",
                  "country": "JP",
                  "line1": "1-2-3 Kudan-minami, Chiyoda-ku",
                  "line2": "",
                  "postal_code": "100-0012",
                  "state": ""
                },
                "support_email": "billing@example.com",
                "support_phone": "+81312345678",
                "support_url": "",
                "url": "https://www.example.com"
          },
          "business_type": "company",
          "capabilities": {
                "card_payments": "active"
          },
          "charges_enabled": true,
          "country": "JP",
          "default_currency": "jpy",
          "details_submitted": true,
          "email": "tech@example.com",
          "metadata": {},
          "payouts_enabled": true,
          "settings": {
                "branding": {
                  "icon": "file_1DLf5rCeyNCl6fY2kS4e5hMT",
                  "logo": null,
                  "primary_color": "#0e77ca"
                },
                "card_payments": {
                  "decline_on": {
                        "avs_failure": false,
                        "cvc_failure": false
                  },
                  "statement_descriptor_prefix": null
                },
                "dashboard": {
                  "display_name": "myshop-inc",
                  "timezone": "Asia/Tokyo"
                },
                "payments": {
                  "statement_descriptor": "MYSHOP, INC",
                  "statement_descriptor_kana": "マイショップインク",
                  "statement_descriptor_kanji": "マイショップインク"
                },
                "payouts": {
                  "debit_negative_balances": true,
                  "schedule": {
                        "delay_days": 4,
                        "interval": "weekly",
                        "weekly_anchor": "thursday"
                  },
                  "statement_descriptor": null
                }
          },
          "type": "standard"
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/accounts/object

COPYRIGHT & LICENSE

Copyright (c) 2018-2019 DEGUEST Pte. Ltd.

You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 68:

You forgot a '=back' before '=head1'