class Stripe::IssuingCardShipping

Overview

Included Modules

Defined in:

stripe/models/issuing_card_shipping.cr

Constant Summary

ERROR_MESSAGE_FOR__TYPE = "invalid value for \"_type\", must be one of [bulk, individual]."
ERROR_MESSAGE_FOR_CARRIER = "invalid value for \"carrier\", must be one of [dhl, fedex, royal_mail, usps]."
ERROR_MESSAGE_FOR_SERVICE = "invalid value for \"service\", must be one of [express, priority, standard]."
ERROR_MESSAGE_FOR_STATUS = "invalid value for \"status\", must be one of [canceled, delivered, failure, pending, returned, shipped]."
MAX_LENGTH_FOR_NAME = 5000
MAX_LENGTH_FOR_PHONE_NUMBER = 5000
MAX_LENGTH_FOR_TRACKING_NUMBER = 5000
MAX_LENGTH_FOR_TRACKING_URL = 5000
VALID_VALUES_FOR__TYPE = String.static_array("bulk", "individual")
VALID_VALUES_FOR_CARRIER = String.static_array("dhl", "fedex", "royal_mail", "usps")
VALID_VALUES_FOR_SERVICE = String.static_array("express", "priority", "standard")
VALID_VALUES_FOR_STATUS = String.static_array("canceled", "delivered", "failure", "pending", "returned", "shipped")

Constructors

Instance Method Summary

Instance methods inherited from module OpenApi::Json

after_initialize after_initialize, clone clone, eql?(o : self) eql?, to_hash : Hash(String, JSON::Any) to_hash, to_json_any : JSON::Any to_json_any

Class methods inherited from module OpenApi::Json

build_from_hash(hash : Hash) build_from_hash, build_from_json_any(json_any : JSON::Any) build_from_json_any

Instance methods inherited from module OpenApi::Validatable

list_invalid_properties : Array(String) list_invalid_properties, list_invalid_properties_for(key : String) : Array(String) list_invalid_properties_for, valid? : Bool valid?, validate : Nil validate

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(*, address : Stripe::Address | Nil = nil, address_validation : Stripe::IssuingCardShippingAddressValidation1 | Nil = nil, carrier : String | Nil = nil, customs : Stripe::IssuingCardShippingCustoms1 | Nil = nil, eta : Int64 | Nil = nil, name : String | Nil = nil, phone_number : String | Nil = nil, require_signature : Bool | Nil = nil, service : String | Nil = nil, status : String | Nil = nil, tracking_number : String | Nil = nil, tracking_url : String | Nil = nil, _type : String | Nil = nil) #

Initializes the object @param [Hash] attributes Model attributes in the form of hash


[View source]

Instance Method Detail

def ==(other : self) #

Generates #hash and #== methods from all fields #== @return [Bool] #hash calculates hash code according to all attributes. #hash @return [UInt64] Hash code


def _type : String | Nil #

[View source]
def _type=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] _type Object to be assigned


[View source]
def address : Stripe::Address | Nil #

[View source]
def address=(new_value : Stripe::Address | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] address Object to be assigned


[View source]
def address_validation : Stripe::IssuingCardShippingAddressValidation1 | Nil #

[View source]
def address_validation=(new_value : Stripe::IssuingCardShippingAddressValidation1 | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] address_validation Object to be assigned


[View source]
def carrier : String | Nil #

[View source]
def carrier=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] carrier Object to be assigned


[View source]

[View source]
def customs=(new_value : Stripe::IssuingCardShippingCustoms1 | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] customs Object to be assigned


[View source]
def eta : Int64 | Nil #

[View source]
def eta=(new_value : Int64 | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] eta Object to be assigned


[View source]
def hash(hasher) #

Generates #hash and #== methods from all fields #== @return [Bool] #hash calculates hash code according to all attributes. #hash @return [UInt64] Hash code


def list_invalid_properties : Array(String) #

Show invalid properties with the reasons. Usually used together with valid? @return Array for valid properties with the reasons


[View source]
def name : String | Nil #

[View source]
def name=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] name Object to be assigned


[View source]
def phone_number : String | Nil #

[View source]
def phone_number=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] phone_number Object to be assigned


[View source]
def require_signature : Bool | Nil #

[View source]
def require_signature=(new_value : Bool | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] require_signature Object to be assigned


[View source]
def service : String | Nil #

[View source]
def service=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] service Object to be assigned


[View source]
def status : String | Nil #

[View source]
def status=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] status Object to be assigned


[View source]
def tracking_number : String | Nil #

[View source]
def tracking_number=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] tracking_number Object to be assigned


[View source]
def tracking_url : String | Nil #

[View source]
def tracking_url=(new_value : String | Nil) #

Custom attribute writer method checking allowed values (enum). @param [Object] tracking_url Object to be assigned


[View source]
def valid? : Bool #

Check to see if the all the properties in the model are valid @return true if the model is valid


[View source]