class CybridApiId::PostCustomerTokenIdpModel

def customer_guid=(customer_guid)

Parameters:
  • customer_guid (Object) -- Value to be assigned
def customer_guid=(customer_guid)
  if customer_guid.nil?
    fail ArgumentError, 'customer_guid cannot be nil'
  end
  if customer_guid.to_s.length > 32
    fail ArgumentError, 'invalid value for "customer_guid", the character length must be smaller than or equal to 32.'
  end
  if customer_guid.to_s.length < 32
    fail ArgumentError, 'invalid value for "customer_guid", the character length must be great than or equal to 32.'
  end
  @customer_guid = customer_guid
end