Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
class ContainerExecRequestTerminalSize(Model):
"""The size of the terminal.

:param row: The row size of the terminal
:type row: int
:param column: The column size of the terminal
:type column: int
:param rows: The row size of the terminal
:type rows: int
:param cols: The column size of the terminal
:type cols: int
"""

_attribute_map = {
'row': {'key': 'row', 'type': 'int'},
'column': {'key': 'column', 'type': 'int'},
'rows': {'key': 'rows', 'type': 'int'},
'cols': {'key': 'cols', 'type': 'int'},
}

def __init__(self, row=None, column=None):
def __init__(self, rows=None, cols=None):
super(ContainerExecRequestTerminalSize, self).__init__()
self.row = row
self.column = column
self.rows = rows
self.cols = cols