Class: SDM::AccountAttachmentCreateOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

AccountAttachmentCreateOptions specifies extra options for creating an AccountAttachment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(overwrite: nil) ⇒ AccountAttachmentCreateOptions

Returns a new instance of AccountAttachmentCreateOptions.



84
85
86
87
88
89
90
# File 'lib/models/porcelain.rb', line 84

def initialize(
	overwrite:nil \
)
	if overwrite != nil
		@overwrite = overwrite
	end
end

Instance Attribute Details

#overwriteObject

Overwrite clears all account grants before the attachment.



83
84
85
# File 'lib/models/porcelain.rb', line 83

def overwrite
  @overwrite
end